[][src]Enum mapped_command::CommandExecutionError

pub enum CommandExecutionError {
    Io(Error),
    UnexpectedExitStatus(UnexpectedExitStatus),
}

Error used by various OutputMapping implementations.

Variants

Io(Error)

An io::Error happened, most likely because spawning failed.

UnexpectedExitStatus(UnexpectedExitStatus)

An unexpected exit status appeared.

Trait Implementations

impl Debug for CommandExecutionError[src]

impl Display for CommandExecutionError[src]

impl Error for CommandExecutionError[src]

impl From<Error> for CommandExecutionError[src]

impl From<UnexpectedExitStatus> for CommandExecutionError[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> 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.