[][src]Trait heim::process::os::unix::ProcessExt

pub trait ProcessExt {
    fn signal(
        &self,
        signal: Signal
    ) -> Pin<Box<dyn Future<Output = Result<(), ProcessError>> + Send>>; }

Unix-specific extension to Process.

Required methods

fn signal(
    &self,
    signal: Signal
) -> Pin<Box<dyn Future<Output = Result<(), ProcessError>> + Send>>

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...