#[repr(u8)]pub enum DirEntryType {
Unknown = 0,
Fifo = 1,
Chr = 2,
Dir = 4,
Blk = 6,
Reg = 8,
Lnk = 10,
Sock = 12,
Wht = 14,
}
Expand description
Directory entry type.
Variants§
Trait Implementations§
Source§impl Clone for DirEntryType
impl Clone for DirEntryType
Source§fn clone(&self) -> DirEntryType
fn clone(&self) -> DirEntryType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DirEntryType
impl Debug for DirEntryType
Source§impl From<u8> for DirEntryType
impl From<u8> for DirEntryType
Source§impl PartialEq for DirEntryType
impl PartialEq for DirEntryType
impl Copy for DirEntryType
impl Eq for DirEntryType
impl StructuralPartialEq for DirEntryType
Auto Trait Implementations§
impl Freeze for DirEntryType
impl RefUnwindSafe for DirEntryType
impl Send for DirEntryType
impl Sync for DirEntryType
impl Unpin for DirEntryType
impl UnwindSafe for DirEntryType
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