[][src]Trait heim_process::os::unix::ProcessExt

pub trait ProcessExt {
    fn signal(&self, signal: Signal) -> BoxFuture<ProcessResult<()>>;
}

Unix-specific extension to Process.

Required methods

fn signal(&self, signal: Signal) -> BoxFuture<ProcessResult<()>>

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.

Loading content...

Implementors

impl ProcessExt for Process[src]

Loading content...