pub enum EntryKind {
File,
Directory,
Symlink,
NamedPipe,
Socket,
CharDevice,
BlockDevice,
Hardlink,
Unknown(char),
}Expand description
The kind of filesystem object a catalog entry describes.
Variants§
File
Directory
Symlink
NamedPipe
Socket
CharDevice
BlockDevice
Hardlink
Unknown(char)
A catalog entry type this reader does not model (the raw cat_sig letter).
Trait Implementations§
impl Copy for EntryKind
impl Eq for EntryKind
impl StructuralPartialEq for EntryKind
Auto Trait Implementations§
impl Freeze for EntryKind
impl RefUnwindSafe for EntryKind
impl Send for EntryKind
impl Sync for EntryKind
impl Unpin for EntryKind
impl UnsafeUnpin for EntryKind
impl UnwindSafe for EntryKind
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