Trait ChildExt
trait ChildExt: Sealed
Required Methods
fn send_signal(self: &Self, signal: i32) -> io::Result<()>Sends a signal to a child process.
Errors
This function will return an error if the signal is invalid. The integer values associated with signals are implementation-specific, so it's encouraged to use a crate that provides posix bindings.
Examples
use ; use SIGTERM;
Implementors
impl ChildExt for process::Child