pub enum EntryType {
RegularFile = 70,
Directory = 68,
SymbolicLink = 76,
Fifo = 80,
CharacterDevice = 67,
BlockDevice = 66,
Socket = 83,
Whiteout = 87,
Door = 82,
Port = 84,
Metadata = 77,
}Expand description
Wraps AppleArchive entry type identifiers.
Variants§
RegularFile = 70
Wraps the RegularFile variant of EntryType.
Directory = 68
Wraps the Directory variant of EntryType.
SymbolicLink = 76
Wraps the SymbolicLink variant of EntryType.
Fifo = 80
Wraps the Fifo variant of EntryType.
CharacterDevice = 67
Wraps the CharacterDevice variant of EntryType.
BlockDevice = 66
Wraps the BlockDevice variant of EntryType.
Socket = 83
Wraps the Socket variant of EntryType.
Whiteout = 87
Wraps the Whiteout variant of EntryType.
Door = 82
Wraps the Door variant of EntryType.
Port = 84
Wraps the Port variant of EntryType.
Metadata = 77
Wraps the Metadata variant of EntryType.
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 UnsafeUnpin 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