diff --git a/tokio-net/src/process/mod.rs b/tokio-net/src/process/mod.rs index f58feb525..62ffdc68d 100644 --- a/tokio-net/src/process/mod.rs +++ b/tokio-net/src/process/mod.rs @@ -641,6 +641,12 @@ impl Command { } } +impl From for Command { + fn from(std: StdCommand) -> Command { + Command { std } + } +} + /// A drop guard which ensures the child process is killed on drop to maintain /// the contract of dropping a Future leads to "cancellation". #[derive(Debug)]