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

fn description(&self) -> &str

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

impl Display for ProcessError

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

impl Debug for ProcessError

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

impl CargoError for ProcessError

fn is_human(&self) -> bool

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