pub enum FilesystemType {
Undefined,
Flat,
Hierarchical,
Dcf,
Other,
}Expand description
Type of filesystem on a storage.
Variants§
Undefined
Undefined filesystem type.
Flat
Flat (no folders).
Hierarchical
Hierarchical (folders).
Dcf
DCF (camera file system).
Other
A code this library doesn’t model.
Trait Implementations§
Source§impl Clone for FilesystemType
impl Clone for FilesystemType
Source§fn clone(&self) -> FilesystemType
fn clone(&self) -> FilesystemType
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 FilesystemType
Source§impl Debug for FilesystemType
impl Debug for FilesystemType
Source§impl Default for FilesystemType
impl Default for FilesystemType
Source§fn default() -> FilesystemType
fn default() -> FilesystemType
Returns the “default value” for a type. Read more
impl Eq for FilesystemType
Source§impl From<FilesystemType> for FilesystemType
impl From<FilesystemType> for FilesystemType
Source§impl PartialEq for FilesystemType
impl PartialEq for FilesystemType
Source§fn eq(&self, other: &FilesystemType) -> bool
fn eq(&self, other: &FilesystemType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FilesystemType
Auto Trait Implementations§
impl Freeze for FilesystemType
impl RefUnwindSafe for FilesystemType
impl Send for FilesystemType
impl Sync for FilesystemType
impl Unpin for FilesystemType
impl UnsafeUnpin for FilesystemType
impl UnwindSafe for FilesystemType
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