pub enum FileSystemKind {
Recognized(FileSystemName),
Unrecognized(Box<String>),
}
Expand description
The kind of filesystem that a file resides on.
Variants§
Recognized(FileSystemName)
A recognized filesystem.
Unrecognized(Box<String>)
An unrecognized filesystem.
Trait Implementations§
Source§impl Clone for FileSystemKind
impl Clone for FileSystemKind
Source§fn clone(&self) -> FileSystemKind
fn clone(&self) -> FileSystemKind
Returns a copy 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 FileSystemKind
impl Debug for FileSystemKind
Source§impl PartialEq for FileSystemKind
impl PartialEq for FileSystemKind
impl Eq for FileSystemKind
impl StructuralPartialEq for FileSystemKind
Auto Trait Implementations§
impl Freeze for FileSystemKind
impl RefUnwindSafe for FileSystemKind
impl Send for FileSystemKind
impl Sync for FileSystemKind
impl Unpin for FileSystemKind
impl UnwindSafe for FileSystemKind
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