pub enum DelegateError {
PurgeBase {
source: PurgeBaseError,
},
Backend {
source: BackendError,
},
Trace {
source: TraceError,
},
}Variants§
PurgeBase
Fields
§
source: PurgeBaseErrorBackend
Fields
§
source: BackendErrorTrace
Fields
§
source: TraceErrorTrait Implementations§
Source§impl Debug for DelegateError
impl Debug for DelegateError
Source§impl Display for DelegateError
impl Display for DelegateError
Source§impl Error for DelegateError
impl Error for DelegateError
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<BackendError> for DelegateError
impl From<BackendError> for DelegateError
Source§fn from(source: BackendError) -> Self
fn from(source: BackendError) -> Self
Converts to this type from the input type.
Source§impl From<PurgeBaseError> for DelegateError
impl From<PurgeBaseError> for DelegateError
Source§fn from(source: PurgeBaseError) -> Self
fn from(source: PurgeBaseError) -> Self
Converts to this type from the input type.
Source§impl From<TraceError> for DelegateError
impl From<TraceError> for DelegateError
Source§fn from(source: TraceError) -> Self
fn from(source: TraceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DelegateError
impl !RefUnwindSafe for DelegateError
impl Send for DelegateError
impl Sync for DelegateError
impl Unpin for DelegateError
impl !UnwindSafe for DelegateError
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