Enum checked_command::Error []

pub enum Error {
    Io(IoError),
    Failure(ExitStatusOption<Output>),
}

error type representing either a io::Error or a failure caused by a non-successful exit status i.e. without exit code or a exit code not equal zero.

Variants

a io::Error occurred when handling the action

Process exited with a non-zero exit code

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error

Formats the value using the given formatter. Read more

impl Error for Error

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<IoError> for Error

Performs the conversion.