pub enum TestProjectError {
Io(Error),
CommandFailed {
command: String,
stderr: String,
},
}Expand description
Error type for test project operations.
Variants§
Trait Implementations§
Source§impl Debug for TestProjectError
impl Debug for TestProjectError
Source§impl Display for TestProjectError
impl Display for TestProjectError
Source§impl Error for TestProjectError
impl Error for TestProjectError
1.30.0 · 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 TestProjectError
impl !RefUnwindSafe for TestProjectError
impl Send for TestProjectError
impl Sync for TestProjectError
impl Unpin for TestProjectError
impl UnsafeUnpin for TestProjectError
impl !UnwindSafe for TestProjectError
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