pub enum ManagerError {
DlcManager(Error),
}Expand description
Errors from the DLC Manager component. Currently wraps the underlying Rust-DLC manager errors.
Variantsยง
Trait Implementationsยง
Sourceยงimpl Debug for ManagerError
impl Debug for ManagerError
Sourceยงimpl Display for ManagerError
impl Display for ManagerError
Sourceยงimpl Error for ManagerError
impl Error for ManagerError
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<Error> for ManagerError
impl From<Error> for ManagerError
Sourceยงfn from(source: DlcManagerError) -> Self
fn from(source: DlcManagerError) -> Self
Converts to this type from the input type.
Auto Trait Implementationsยง
impl !RefUnwindSafe for ManagerError
impl !UnwindSafe for ManagerError
impl Freeze for ManagerError
impl Send for ManagerError
impl Sync for ManagerError
impl Unpin for ManagerError
impl UnsafeUnpin for ManagerError
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