summaryrefslogtreecommitdiffstats
path: root/tokio-net
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-net')
-rw-r--r--tokio-net/src/process/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tokio-net/src/process/mod.rs b/tokio-net/src/process/mod.rs
index f58feb52..62ffdc68 100644
--- a/tokio-net/src/process/mod.rs
+++ b/tokio-net/src/process/mod.rs
@@ -641,6 +641,12 @@ impl Command {
}
}
+impl From<StdCommand> 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)]