heim_process::os::unixTrait ProcessExt
Source pub trait ProcessExt {
// Required method
fn signal(&self, signal: Signal) -> BoxFuture<'_, ProcessResult<()>>;
}
Expand description
Unix-specific extension to Process.
Send the signal to process.
Since -> impl Trait
is not allowed yet in the trait methods,
this method returns boxed Future
. This behavior will change later.