pub enum ResultsError {
TerminalError(Error),
}Expand description
ResultsError is the error type for results.
Variants§
Trait Implementations§
Source§impl Debug for ResultsError
impl Debug for ResultsError
Source§impl Display for ResultsError
impl Display for ResultsError
Source§impl Error for ResultsError
impl Error for ResultsError
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()
Source§impl From<ResultsError> for TestError
impl From<ResultsError> for TestError
Source§fn from(source: ResultsError) -> Self
fn from(source: ResultsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ResultsError
impl !RefUnwindSafe for ResultsError
impl Send for ResultsError
impl Sync for ResultsError
impl Unpin for ResultsError
impl !UnwindSafe for ResultsError
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