#[non_exhaustive]pub enum RuntimePlaneError {
CoreAdapterNotFound(String),
ExtensionNotFound(String),
NoDefaultCoreAdapter,
Execution(String),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Debug for RuntimePlaneError
impl Debug for RuntimePlaneError
Source§impl Display for RuntimePlaneError
impl Display for RuntimePlaneError
Source§impl Error for RuntimePlaneError
impl Error for RuntimePlaneError
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<RuntimePlaneError> for KernelError
impl From<RuntimePlaneError> for KernelError
Source§fn from(source: RuntimePlaneError) -> KernelError
fn from(source: RuntimePlaneError) -> KernelError
Converts to this type from the input type.
Source§impl PartialEq for RuntimePlaneError
impl PartialEq for RuntimePlaneError
impl Eq for RuntimePlaneError
impl StructuralPartialEq for RuntimePlaneError
Auto Trait Implementations§
impl Freeze for RuntimePlaneError
impl RefUnwindSafe for RuntimePlaneError
impl Send for RuntimePlaneError
impl Sync for RuntimePlaneError
impl Unpin for RuntimePlaneError
impl UnsafeUnpin for RuntimePlaneError
impl UnwindSafe for RuntimePlaneError
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