pub enum DirEntryType {
File,
Dir,
}Expand description
The type of a directory entry.
Variants§
Trait Implementations§
Source§impl Clone for DirEntryType
impl Clone for DirEntryType
Source§fn clone(&self) -> DirEntryType
fn clone(&self) -> DirEntryType
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 DirEntryType
impl Debug for DirEntryType
Source§impl<'de> Deserialize<'de> for DirEntryType
impl<'de> Deserialize<'de> for DirEntryType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DirEntryType
impl RefUnwindSafe for DirEntryType
impl Send for DirEntryType
impl Sync for DirEntryType
impl Unpin for DirEntryType
impl UnwindSafe for DirEntryType
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