#[non_exhaustive]pub enum ManagedError {
ComponentNotFound(String),
Registry(RegistryError),
Reload {
name: String,
message: String,
},
}Expand description
Errors from ManagedRuntime operations.
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.
ComponentNotFound(String)
A component was not found in the registry.
Registry(RegistryError)
The component registry returned an error.
Reload
A reload operation failed.
Trait Implementations§
Source§impl Debug for ManagedError
impl Debug for ManagedError
Source§impl Display for ManagedError
impl Display for ManagedError
Source§impl Error for ManagedError
impl Error for ManagedError
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<RegistryError> for ManagedError
impl From<RegistryError> for ManagedError
Source§fn from(source: RegistryError) -> Self
fn from(source: RegistryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ManagedError
impl RefUnwindSafe for ManagedError
impl Send for ManagedError
impl Sync for ManagedError
impl Unpin for ManagedError
impl UnsafeUnpin for ManagedError
impl UnwindSafe for ManagedError
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