#[repr(u8)]pub enum EntryType {
Unknown = 0,
RegularFile = 1,
Directory = 2,
CharacterDevice = 3,
BlockDevice = 4,
FIFO = 5,
Socket = 6,
SymLink = 7,
}
Expand description
Directory Entry types.
Variants§
Unknown = 0
RegularFile = 1
Directory = 2
CharacterDevice = 3
BlockDevice = 4
FIFO = 5
Socket = 6
SymLink = 7
Implementations§
Trait Implementations§
impl StructuralPartialEq for EntryType
Auto Trait Implementations§
impl Freeze for EntryType
impl RefUnwindSafe for EntryType
impl Send for EntryType
impl Sync for EntryType
impl Unpin for EntryType
impl UnwindSafe for EntryType
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