#[non_exhaustive]#[repr(u16)]pub enum FileSystemName {
Show 22 variants
Autofs = 0,
Btrfs = 1,
Cdfs = 2,
Devfs = 3,
Ext2 = 4,
Ext3 = 5,
Ext4 = 6,
Fat = 7,
Fat32 = 8,
Fatx = 9,
Fdescfs = 10,
Fusefs = 11,
Linprocfs = 12,
Linsysfs = 13,
Mqueuefs = 14,
Nfs = 15,
Ntfs = 16,
Nullfs = 17,
Procfs = 18,
Tmpfs = 19,
Ufs = 20,
Zfs = 21,
}
Expand description
An enum representing all recognized filesystem names.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Autofs = 0
Btrfs = 1
Cdfs = 2
Devfs = 3
Ext2 = 4
Ext3 = 5
Ext4 = 6
Fat = 7
Fat32 = 8
Fatx = 9
Fdescfs = 10
Fusefs = 11
Linprocfs = 12
Linsysfs = 13
Mqueuefs = 14
Nfs = 15
Ntfs = 16
Nullfs = 17
Procfs = 18
Tmpfs = 19
Ufs = 20
Zfs = 21
Trait Implementations§
Source§impl Clone for FileSystemName
impl Clone for FileSystemName
Source§fn clone(&self) -> FileSystemName
fn clone(&self) -> FileSystemName
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 FileSystemName
impl Debug for FileSystemName
Source§impl PartialEq for FileSystemName
impl PartialEq for FileSystemName
impl Copy for FileSystemName
impl Eq for FileSystemName
impl StructuralPartialEq for FileSystemName
Auto Trait Implementations§
impl Freeze for FileSystemName
impl RefUnwindSafe for FileSystemName
impl Send for FileSystemName
impl Sync for FileSystemName
impl Unpin for FileSystemName
impl UnwindSafe for FileSystemName
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