pub enum RunTestError {
Show 14 variants
Namespace(NamespaceError),
LaunchTest(LaunchError),
Io(IoError),
Log(LogError),
Utf8ToString(Utf8Error),
SendStart(Error),
SendFinish(Error),
SendFinishAllTests(Error),
UnexpectedReturnCode(i64),
JsonParse(Error),
ProcessInfo(Status),
TestCaseName,
EnumerationError(EnumerationError),
Component(Arc<ComponentError>),
}
Expand description
Error encountered while running test.
Variants§
Namespace(NamespaceError)
LaunchTest(LaunchError)
Io(IoError)
Log(LogError)
Utf8ToString(Utf8Error)
SendStart(Error)
SendFinish(Error)
SendFinishAllTests(Error)
UnexpectedReturnCode(i64)
JsonParse(Error)
ProcessInfo(Status)
TestCaseName
EnumerationError(EnumerationError)
Component(Arc<ComponentError>)
Trait Implementations§
Source§impl Debug for RunTestError
impl Debug for RunTestError
Source§impl Display for RunTestError
impl Display for RunTestError
Source§impl Error for RunTestError
impl Error for RunTestError
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<Arc<ComponentError>> for RunTestError
impl From<Arc<ComponentError>> for RunTestError
Source§fn from(source: Arc<ComponentError>) -> Self
fn from(source: Arc<ComponentError>) -> Self
Converts to this type from the input type.
Source§impl From<ComponentError> for RunTestError
impl From<ComponentError> for RunTestError
Source§fn from(e: ComponentError) -> Self
fn from(e: ComponentError) -> Self
Converts to this type from the input type.
Source§impl From<EnumerationError> for RunTestError
impl From<EnumerationError> for RunTestError
Source§fn from(source: EnumerationError) -> Self
fn from(source: EnumerationError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for RunTestError
impl From<Error> for RunTestError
Source§impl From<IoError> for RunTestError
impl From<IoError> for RunTestError
Source§impl From<LaunchError> for RunTestError
impl From<LaunchError> for RunTestError
Source§fn from(source: LaunchError) -> Self
fn from(source: LaunchError) -> Self
Converts to this type from the input type.
Source§impl From<LogError> for RunTestError
impl From<LogError> for RunTestError
Source§impl From<NamespaceError> for RunTestError
impl From<NamespaceError> for RunTestError
Source§fn from(source: NamespaceError) -> Self
fn from(source: NamespaceError) -> 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 RunTestError
impl !RefUnwindSafe for RunTestError
impl Send for RunTestError
impl Sync for RunTestError
impl Unpin for RunTestError
impl !UnwindSafe for RunTestError
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