Struct process_control::ExitStatus
source · [−]pub struct ExitStatus(_);Expand description
Equivalent to process::ExitStatus but allows for greater accuracy.
Implementations
sourceimpl ExitStatus
impl ExitStatus
sourcepub fn success(self) -> bool
pub fn success(self) -> bool
Equivalent to process::ExitStatus::success.
sourcepub fn code(self) -> Option<i64>
pub fn code(self) -> Option<i64>
Equivalent to process::ExitStatus::code, but a more accurate value
will be returned if possible.
sourcepub fn signal(self) -> Option<c_int>
This is supported on Unix only.
pub fn signal(self) -> Option<c_int>
This is supported on Unix only.
Equivalent to ExitStatusExt::signal.
Trait Implementations
sourceimpl Clone for ExitStatus
impl Clone for ExitStatus
sourcefn clone(&self) -> ExitStatus
fn clone(&self) -> ExitStatus
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ExitStatus
impl Debug for ExitStatus
sourceimpl Display for ExitStatus
impl Display for ExitStatus
sourceimpl From<ExitStatus> for ExitStatus
impl From<ExitStatus> for ExitStatus
sourcefn from(value: ExitStatus) -> Self
fn from(value: ExitStatus) -> Self
Performs the conversion.
sourceimpl PartialEq<ExitStatus> for ExitStatus
impl PartialEq<ExitStatus> for ExitStatus
sourcefn eq(&self, other: &ExitStatus) -> bool
fn eq(&self, other: &ExitStatus) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ExitStatus) -> bool
fn ne(&self, other: &ExitStatus) -> bool
This method tests for !=.
impl Copy for ExitStatus
impl Eq for ExitStatus
impl StructuralEq for ExitStatus
impl StructuralPartialEq for ExitStatus
Auto Trait Implementations
impl RefUnwindSafe for ExitStatus
impl Send for ExitStatus
impl Sync for ExitStatus
impl Unpin for ExitStatus
impl UnwindSafe for ExitStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more