Struct cargo::util::errors::CargoTestError
[−]
[src]
pub struct CargoTestError {
pub desc: String,
pub exit: Option<ExitStatus>,
pub causes: Vec<ProcessError>,
}Error when testcases fail
Fields
desc | |
exit | |
causes |
Methods
impl CargoTestError[src]
fn new(errors: Vec<ProcessError>) -> Self
Trait Implementations
impl Display for CargoTestError[src]
impl Debug for CargoTestError[src]
impl Error for CargoTestError[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.