pub enum VFSEntryType {
File,
Deleted,
Inline,
Link,
}Expand description
VFS entry type
Variants§
Trait Implementations§
Source§impl Clone for VFSEntryType
impl Clone for VFSEntryType
Source§fn clone(&self) -> VFSEntryType
fn clone(&self) -> VFSEntryType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VFSEntryType
Source§impl Debug for VFSEntryType
impl Debug for VFSEntryType
Source§impl PartialEq for VFSEntryType
impl PartialEq for VFSEntryType
Source§fn eq(&self, other: &VFSEntryType) -> bool
fn eq(&self, other: &VFSEntryType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VFSEntryType
Auto Trait Implementations§
impl Freeze for VFSEntryType
impl RefUnwindSafe for VFSEntryType
impl Send for VFSEntryType
impl Sync for VFSEntryType
impl Unpin for VFSEntryType
impl UnsafeUnpin for VFSEntryType
impl UnwindSafe for VFSEntryType
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