pub enum SingleFileEntryType {
File,
Directory,
Unknown,
}Expand description
Type of a logical single-file catalog entry.
Variants§
File
Regular file entry.
Directory
Directory entry.
Unknown
Entry type not recognized by this crate.
Trait Implementations§
Source§impl Clone for SingleFileEntryType
impl Clone for SingleFileEntryType
Source§fn clone(&self) -> SingleFileEntryType
fn clone(&self) -> SingleFileEntryType
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 SingleFileEntryType
Source§impl Debug for SingleFileEntryType
impl Debug for SingleFileEntryType
impl Eq for SingleFileEntryType
Source§impl PartialEq for SingleFileEntryType
impl PartialEq for SingleFileEntryType
impl StructuralPartialEq for SingleFileEntryType
Auto Trait Implementations§
impl Freeze for SingleFileEntryType
impl RefUnwindSafe for SingleFileEntryType
impl Send for SingleFileEntryType
impl Sync for SingleFileEntryType
impl Unpin for SingleFileEntryType
impl UnsafeUnpin for SingleFileEntryType
impl UnwindSafe for SingleFileEntryType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.