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
The command exited with a non-zero code.
Fields
§
exit_code: Option<i32>
The exit code for the process. Exit codes can be cross-referenced against
NextestExitCode
.
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)>
Returns 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()
Auto Trait Implementations§
impl Freeze for CommandError
impl !RefUnwindSafe for CommandError
impl Send for CommandError
impl Sync for CommandError
impl Unpin for CommandError
impl !UnwindSafe for CommandError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more