pub enum WalkerError {
NotFound(String),
PermissionDenied(String),
Io(String),
SymlinkCycle(String),
}Expand description
Errors from filesystem operations within the walker.
Variants§
Trait Implementations§
Source§impl Debug for WalkerError
impl Debug for WalkerError
Source§impl Display for WalkerError
impl Display for WalkerError
Source§impl Error for WalkerError
impl Error for WalkerError
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()
Auto Trait Implementations§
impl Freeze for WalkerError
impl RefUnwindSafe for WalkerError
impl Send for WalkerError
impl Sync for WalkerError
impl Unpin for WalkerError
impl UnwindSafe for WalkerError
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