pub enum EnumerationError {
Namespace(Arc<NamespaceError>),
LaunchTest(Arc<LaunchError>),
Io(Arc<IoError>),
ListTest,
JsonParse(Arc<Error>),
Utf8ToString(Utf8Error),
Log(Arc<LogError>),
Kernel(Arc<KernelError>),
Component(Arc<ComponentError>),
}
Expand description
Error encountered while enumerating test.
This must be Clone
-able because enumeration futures are memoized.
Variants§
Namespace(Arc<NamespaceError>)
LaunchTest(Arc<LaunchError>)
Io(Arc<IoError>)
ListTest
JsonParse(Arc<Error>)
Utf8ToString(Utf8Error)
Log(Arc<LogError>)
Kernel(Arc<KernelError>)
Component(Arc<ComponentError>)
Trait Implementations§
Source§impl Clone for EnumerationError
impl Clone for EnumerationError
Source§fn clone(&self) -> EnumerationError
fn clone(&self) -> EnumerationError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EnumerationError
impl Debug for EnumerationError
Source§impl Display for EnumerationError
impl Display for EnumerationError
Source§impl Error for EnumerationError
impl Error for EnumerationError
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 EnumerationError
impl From<Arc<ComponentError>> for EnumerationError
Source§fn from(source: Arc<ComponentError>) -> Self
fn from(source: Arc<ComponentError>) -> Self
Converts to this type from the input type.
Source§impl From<Arc<KernelError>> for EnumerationError
impl From<Arc<KernelError>> for EnumerationError
Source§fn from(source: Arc<KernelError>) -> Self
fn from(source: Arc<KernelError>) -> Self
Converts to this type from the input type.
Source§impl From<ComponentError> for EnumerationError
impl From<ComponentError> for EnumerationError
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<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<Error> for EnumerationError
impl From<Error> for EnumerationError
Source§impl From<IoError> for EnumerationError
impl From<IoError> for EnumerationError
Source§impl From<KernelError> for EnumerationError
impl From<KernelError> for EnumerationError
Source§fn from(e: KernelError) -> Self
fn from(e: KernelError) -> Self
Converts to this type from the input type.
Source§impl From<LaunchError> for EnumerationError
impl From<LaunchError> for EnumerationError
Source§fn from(e: LaunchError) -> Self
fn from(e: LaunchError) -> Self
Converts to this type from the input type.
Source§impl From<LogError> for EnumerationError
impl From<LogError> for EnumerationError
Source§impl From<NamespaceError> for EnumerationError
impl From<NamespaceError> for EnumerationError
Source§fn from(e: NamespaceError) -> Self
fn from(e: NamespaceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EnumerationError
impl !RefUnwindSafe for EnumerationError
impl Send for EnumerationError
impl Sync for EnumerationError
impl Unpin for EnumerationError
impl !UnwindSafe for EnumerationError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)