Struct cargo::util::errors::ProcessError [] [src]

pub struct ProcessError {
    pub desc: String,
    pub exit: Option<ExitStatus>,
    pub output: Option<Output>,
    // some fields omitted
}

Fields

desc
exit
output

Trait Implementations

impl Error for ProcessError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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

impl Display for ProcessError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Debug for ProcessError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl CargoError for ProcessError
[src]

fn is_human(&self) -> bool

fn cargo_cause(&self) -> Option<&CargoError>