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
Exit(ExitStatus)
The command exited non-zero or due to a signal.
Tuple Fields of Exit
0: ExitStatus