[][src]Enum tabox::result::ExitStatus

pub enum ExitStatus {
    ExitCode(i32),
    Signal(i32),
    Killed,
}

Exit status of a sandbox process

Variants

ExitCode(i32)

Process terminated with an exit code

Signal(i32)

Process was killed with a signal

Killed

Process was killed by the sandbox (e.g for exceeding wall time limit)

Methods

impl ExitStatus[src]

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

True if the process executed correctly (return with exit status 0)

Trait Implementations

impl Clone for ExitStatus[src]

impl Copy for ExitStatus[src]

impl Debug for ExitStatus[src]

impl<'de> Deserialize<'de> for ExitStatus[src]

impl PartialEq<ExitStatus> for ExitStatus[src]

impl Serialize for ExitStatus[src]

impl StructuralPartialEq for ExitStatus[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.