pub enum InodeType {
Fifo = 1,
Char = 2,
Directory = 4,
Block = 6,
Regular = 8,
Symlink = 10,
Socket = 12,
}
Expand description
Types of inodes.
Variants§
Implementations§
Trait Implementations§
source§impl PartialEq for InodeType
impl PartialEq for InodeType
impl Copy for InodeType
impl Eq for InodeType
impl StructuralPartialEq for InodeType
Auto Trait Implementations§
impl RefUnwindSafe for InodeType
impl Send for InodeType
impl Sync for InodeType
impl Unpin for InodeType
impl UnwindSafe for InodeType
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