Enum block_utils::FilesystemType
source · pub enum FilesystemType {
Btrfs,
Ext2,
Ext3,
Ext4,
Lvm,
Xfs,
Zfs,
Ntfs,
Vfat,
Unrecognised(String),
Unknown,
}Expand description
What type of filesystem
Variants§
Btrfs
Ext2
Ext3
Ext4
Lvm
Xfs
Zfs
Ntfs
Vfat
All FAT-based filesystems, i.e. VFat, Fat16, Fat32, Fat64, ExFat.
Unrecognised(String)
Unknown filesystem with label (name).
Unknown
Unknown filesystem without label (name) or absent filesystem.
Implementations§
Trait Implementations§
source§impl Clone for FilesystemType
impl Clone for FilesystemType
source§fn clone(&self) -> FilesystemType
fn clone(&self) -> FilesystemType
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 FilesystemType
impl Debug for FilesystemType
source§impl Display for FilesystemType
impl Display for FilesystemType
source§impl FromStr for FilesystemType
impl FromStr for FilesystemType
source§impl PartialEq<FilesystemType> for FilesystemType
impl PartialEq<FilesystemType> for FilesystemType
source§fn eq(&self, other: &FilesystemType) -> bool
fn eq(&self, other: &FilesystemType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.