tokio-process: Implement From<StdCommand> for Command (#1513)

This commit is contained in:
Fenhl
2019-08-31 11:45:41 -07:00
committed by Ivan Petkov
parent 2f91c85ad8
commit 26432355d5
+6
View File
@@ -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)]