pub enum PurgeBaseError {
IO {
source: Error,
},
Glob {
source: GlobError,
},
FromUtf8 {
source: FromUtf8Error,
},
}Variants§
Trait Implementations§
Source§impl Debug for PurgeBaseError
impl Debug for PurgeBaseError
Source§impl Display for PurgeBaseError
impl Display for PurgeBaseError
Source§impl Error for PurgeBaseError
impl Error for PurgeBaseError
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 PurgeBaseError
impl From<Error> for PurgeBaseError
Source§impl From<FromUtf8Error> for PurgeBaseError
impl From<FromUtf8Error> for PurgeBaseError
Source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.
Source§impl From<GlobError> for PurgeBaseError
impl From<GlobError> for PurgeBaseError
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<PurgeBaseError> for TraceError
impl From<PurgeBaseError> for TraceError
Source§fn from(source: PurgeBaseError) -> Self
fn from(source: PurgeBaseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PurgeBaseError
impl !RefUnwindSafe for PurgeBaseError
impl Send for PurgeBaseError
impl Sync for PurgeBaseError
impl Unpin for PurgeBaseError
impl !UnwindSafe for PurgeBaseError
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