[][src]Struct abscissa_core::testing::prelude::ExitStatus

pub struct ExitStatus<'cmd> { /* fields omitted */ }

Information about a process's exit status

Methods

impl<'cmd> ExitStatus<'cmd>[src]

pub fn code(&self) -> i32[src]

Get the exit code

pub fn success(&self) -> bool[src]

Did the process exit successfully?

pub fn expect_success(&self)[src]

Assert that the process exited successfully

pub fn expect_code(&self, code: i32)[src]

Assert that the process exited with the given code

Trait Implementations

impl<'cmd> Debug for ExitStatus<'cmd>[src]

Auto Trait Implementations

impl<'cmd> Unpin for ExitStatus<'cmd>

impl<'cmd> Sync for ExitStatus<'cmd>

impl<'cmd> !Send for ExitStatus<'cmd>

impl<'cmd> RefUnwindSafe for ExitStatus<'cmd>

impl<'cmd> UnwindSafe for ExitStatus<'cmd>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]