[][src]Enum unix_exec_output_catcher::error::UECOError

pub enum UECOError {
    PipeFailed {
        errno: i32,
    },
    Dup2Failed {
        errno: i32,
    },
    ExecvpFailed {
        errno: i32,
    },
    WaitpidFailed {
        errno: i32,
    },
    ReadFailed {
        errno: i32,
    },
    ForkFailed {
        errno: i32,
    },
    CloseFailed {
        errno: i32,
    },
    PipeNotMarkedAsReadEnd,
    ChildAlreadyDispatched,
    Unknown,
}

Short for U(nix) E(xec) C(atch) O(utput)-Error. Combines all errors that can happen inside this library.

Variants

PipeFailed

Fields of PipeFailed

errno: i32
Dup2Failed

Fields of Dup2Failed

errno: i32
ExecvpFailed

Fields of ExecvpFailed

errno: i32
WaitpidFailed

Fields of WaitpidFailed

errno: i32
ReadFailed

Fields of ReadFailed

errno: i32
ForkFailed

Fields of ForkFailed

errno: i32
CloseFailed

Fields of CloseFailed

errno: i32
PipeNotMarkedAsReadEnd
ChildAlreadyDispatched
Unknown

For all other errors.

Trait Implementations

impl Clone for UECOError[src]

impl Copy for UECOError[src]

impl Debug for UECOError[src]

impl Display for UECOError[src]

impl Error for UECOError[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> 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> ToString for T where
    T: Display + ?Sized
[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.