Enum nextest_metadata::CommandError
source · pub enum CommandError {
Exec(Error),
CommandFailed {
exit_code: Option<i32>,
stderr: Vec<u8>,
},
Json(Error),
}
Expand description
An error that occurs while running a cargo nextest
command.
Variants§
Exec(Error)
Executing the process resulted in an error.
CommandFailed
Fields
§
exit_code: Option<i32>
The exit code for the process. Exit codes can be cross-referenced against
NextestExitCode
.
The command exited with a non-zero code.
Json(Error)
Error parsing JSON output.
Trait Implementations§
source§impl Debug for CommandError
impl Debug for CommandError
source§impl Display for CommandError
impl Display for CommandError
source§impl Error for CommandError
impl Error for CommandError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()