pub enum EntryType {
Root,
Dir,
File,
HardLinkFile,
HardLinkDir,
SoftLink,
}Expand description
Entry type in the filesystem.
Variants§
Root
Root directory.
Dir
Directory.
File
File.
HardLinkFile
Hard link to file.
HardLinkDir
Hard link to directory.
SoftLink
Soft link.
Implementations§
Trait Implementations§
impl Copy for EntryType
impl Eq for EntryType
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