Trait std::os::unix::process::ExitStatusExt1.0.0 [] [src]

pub trait ExitStatusExt {
    fn from_raw(raw: i32) -> Self;
    fn signal(&self) -> Option<i32>;
}

Unix-specific extensions to std::process::ExitStatus

Required Methods

fn from_raw(raw: i32) -> Self

Unstable (exit_status_from #32713)

Creates a new ExitStatus from the raw underlying i32 return value of a process.

fn signal(&self) -> Option<i32>

If the process was terminated by a signal, returns that signal.

Implementors