pub enum NotFoundErr {
Path(PathBuf),
BlockId(BlockId),
FileName(PathBuf),
CidOnDirEntry,
CidOnBlock(BlockId),
}Variants§
Implementations§
Trait Implementations§
Source§impl Debug for NotFoundErr
impl Debug for NotFoundErr
Source§impl Display for NotFoundErr
impl Display for NotFoundErr
Source§impl Error for NotFoundErr
impl Error for NotFoundErr
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()
Source§impl From<NotFoundErr> for Error
impl From<NotFoundErr> for Error
Source§fn from(source: NotFoundErr) -> Self
fn from(source: NotFoundErr) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NotFoundErr
impl RefUnwindSafe for NotFoundErr
impl Send for NotFoundErr
impl Sync for NotFoundErr
impl Unpin for NotFoundErr
impl UnsafeUnpin for NotFoundErr
impl UnwindSafe for NotFoundErr
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