pub enum DirEntryError {
InvalidEntry(u8),
}Variants§
Trait Implementations§
Source§impl Debug for DirEntryError
impl Debug for DirEntryError
Source§impl Display for DirEntryError
impl Display for DirEntryError
Source§impl Error for DirEntryError
impl Error for DirEntryError
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<O: ReadOffset> From<DirEntryError> for EntryReaderError<O>
impl<O: ReadOffset> From<DirEntryError> for EntryReaderError<O>
Source§fn from(source: DirEntryError) -> Self
fn from(source: DirEntryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DirEntryError
impl RefUnwindSafe for DirEntryError
impl Send for DirEntryError
impl Sync for DirEntryError
impl Unpin for DirEntryError
impl UnwindSafe for DirEntryError
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