pub enum FileEntryKind {
File = 0,
Directory = 1,
}Expand description
Whether a file tree entry is a regular file or a directory.
Variants§
Trait Implementations§
Source§impl Clone for FileEntryKind
impl Clone for FileEntryKind
Source§fn clone(&self) -> FileEntryKind
fn clone(&self) -> FileEntryKind
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 Debug for FileEntryKind
impl Debug for FileEntryKind
Source§impl PartialEq for FileEntryKind
impl PartialEq for FileEntryKind
impl Copy for FileEntryKind
impl Eq for FileEntryKind
impl StructuralPartialEq for FileEntryKind
Auto Trait Implementations§
impl Freeze for FileEntryKind
impl RefUnwindSafe for FileEntryKind
impl Send for FileEntryKind
impl Sync for FileEntryKind
impl Unpin for FileEntryKind
impl UnsafeUnpin for FileEntryKind
impl UnwindSafe for FileEntryKind
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