pub enum SuiteServerError {
Enumeration(EnumerationError),
RunTest(RunTestError),
Stream(Error),
Response(Error),
}
Expand description
Error encountered while running suite server
Variants§
Trait Implementations§
Source§impl Debug for SuiteServerError
impl Debug for SuiteServerError
Source§impl Display for SuiteServerError
impl Display for SuiteServerError
Source§impl Error for SuiteServerError
impl Error for SuiteServerError
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<EnumerationError> for SuiteServerError
impl From<EnumerationError> for SuiteServerError
Source§fn from(error: EnumerationError) -> Self
fn from(error: EnumerationError) -> Self
Converts to this type from the input type.
Source§impl From<RunTestError> for SuiteServerError
impl From<RunTestError> for SuiteServerError
Source§fn from(error: RunTestError) -> Self
fn from(error: RunTestError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SuiteServerError
impl !RefUnwindSafe for SuiteServerError
impl Send for SuiteServerError
impl Sync for SuiteServerError
impl Unpin for SuiteServerError
impl !UnwindSafe for SuiteServerError
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