pub enum UnixFsErr {
MissingData,
MissingLinkNameInDirectory,
InvalidData,
DataTypeNotSupported(i32),
BlocksizesLenDiffLinksLen(usize, usize),
SymlinkWithChildren,
MissingSymlinkInfo,
SymlinkPathUtf8,
FileWithDataAndReader,
}Variants§
MissingData
MissingLinkNameInDirectory
InvalidData
DataTypeNotSupported(i32)
BlocksizesLenDiffLinksLen(usize, usize)
SymlinkWithChildren
MissingSymlinkInfo
SymlinkPathUtf8
FileWithDataAndReader
Trait Implementations§
Source§impl Error for UnixFsErr
impl Error for UnixFsErr
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 UnixFsErr
impl RefUnwindSafe for UnixFsErr
impl Send for UnixFsErr
impl Sync for UnixFsErr
impl Unpin for UnixFsErr
impl UnsafeUnpin for UnixFsErr
impl UnwindSafe for UnixFsErr
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