pub enum HashError {
ContentError(ContentError),
}Expand description
Error types from the hash_directory function
Variants§
ContentError(ContentError)
Trait Implementations§
Source§impl From<ContentError> for HashError
impl From<ContentError> for HashError
Source§fn from(err: ContentError) -> Self
fn from(err: ContentError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HashError
impl !RefUnwindSafe for HashError
impl Send for HashError
impl Sync for HashError
impl Unpin for HashError
impl !UnwindSafe for HashError
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