Enum command_run::ErrorKind[][src]

pub enum ErrorKind {
    Run(Error),
    Exit(ExitStatus),
}
Expand description

Type of error.

Variants

Run(Error)

An error occurred in the calls used to run the command. For example, this variant is used if the program does not exist.

Tuple Fields of Run

0: Error

The command exited non-zero or due to a signal.

Tuple Fields of Exit

0: ExitStatus

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.