mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-22 00:00:11 +02:00
tokio-process: Implement From<StdCommand> for Command (#1513)
This commit is contained in:
@@ -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)]
|
||||
|
||||
Reference in New Issue
Block a user