pub enum VfsFileType {
BlockDevice,
CharacterDevice,
Device,
Directory,
File,
NamedPipe,
Socket,
SymbolicLink,
Unknown(u16),
Whiteout,
}Variants§
BlockDevice
CharacterDevice
Device
Directory
File
NamedPipe
Socket
SymbolicLink
Unknown(u16)
Whiteout
Trait Implementations§
Source§impl Clone for VfsFileType
impl Clone for VfsFileType
Source§fn clone(&self) -> VfsFileType
fn clone(&self) -> VfsFileType
Returns a duplicate 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 PartialEq for VfsFileType
impl PartialEq for VfsFileType
impl StructuralPartialEq for VfsFileType
Auto Trait Implementations§
impl Freeze for VfsFileType
impl RefUnwindSafe for VfsFileType
impl Send for VfsFileType
impl Sync for VfsFileType
impl Unpin for VfsFileType
impl UnwindSafe for VfsFileType
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