Enum easy_process::Error
[−]
[src]
pub enum Error {
Io(Error),
Failure(ExitStatus, Output),
}Error variant for easy_process::run.
Variants
Io(Error)I/O error
Failure(ExitStatus, Output)Process error. It holds two parts: first argument is the exit code and the second is the output (stdout and strerr).
Trait Implementations
impl Debug for Error[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl From<Error> for Error[src]
impl Error for Error[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
The lower-level cause of this error, if any. Read more