Enum nextest_metadata::CommandError [−][src]
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)
Tuple Fields
0: 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)
Tuple Fields
0: Error
Error parsing JSON output.