pub enum CheckHeadersRecursivelyError {
IoError(PathBuf, Error),
WalkdirError(Error),
}
Expand description
Errors that can occur when checking for headers recursively
Variants§
IoError(PathBuf, Error)
An I/O error occurred while checking the path
WalkdirError(Error)
walkdir
could not navigate the directory structure
Trait Implementations§
Source§impl Debug for CheckHeadersRecursivelyError
impl Debug for CheckHeadersRecursivelyError
Source§impl Error for CheckHeadersRecursivelyError
impl Error for CheckHeadersRecursivelyError
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 CheckHeadersRecursivelyError
impl !RefUnwindSafe for CheckHeadersRecursivelyError
impl Send for CheckHeadersRecursivelyError
impl Sync for CheckHeadersRecursivelyError
impl Unpin for CheckHeadersRecursivelyError
impl !UnwindSafe for CheckHeadersRecursivelyError
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