Enum dpdk_unix::android_linux::mounts::FileSystemType [−][src]
pub enum FileSystemType {
bdev,
cgroup,
cpuset,
devpts,
devtmpfs,
ext2,
ext3,
ext4,
hugetlbfs,
mqueue,
pipefs,
pstore,
ramfs,
rootfs,
security,
sockfs,
sysfs,
tmpfs,
_proc,
anon_inodefs,
binfmt_misc,
debugfs,
ecryptfs,
fuse,
fuseblk,
fusectl,
prl_fs,
securityfs,
vfat,
Unrecognised(String),
}File system types.
Variants
bdevcgroupcpusetdevptsdevtmpfsext2ext3ext4hugetlbfsmqueuepipefspstoreramfsrootfssecuritysockfssysfstmpfs_procanon_inodefsbinfmt_miscdebugfsecryptfsfusefuseblkfusectlprl_fssecurityfsvfatUnrecognised(String)
Methods
impl FileSystemType[src]
impl FileSystemTypepub fn to_c_string(&self) -> CString[src]
pub fn to_c_string(&self) -> CStringTo CString.
pub fn from_string(value: String) -> Self[src]
pub fn from_string(value: String) -> SelfFrom string.
pub fn from_str(value: &str) -> FileSystemType[src]
pub fn from_str(value: &str) -> FileSystemTypeFrom str.
Trait Implementations
impl Debug for FileSystemType[src]
impl Debug for FileSystemTypefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for FileSystemType[src]
impl PartialEq for FileSystemTypefn eq(&self, other: &FileSystemType) -> bool[src]
fn eq(&self, other: &FileSystemType) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &FileSystemType) -> bool[src]
fn ne(&self, other: &FileSystemType) -> boolThis method tests for !=.
impl Eq for FileSystemType[src]
impl Eq for FileSystemTypeimpl PartialOrd for FileSystemType[src]
impl PartialOrd for FileSystemTypefn partial_cmp(&self, other: &FileSystemType) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &FileSystemType) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &FileSystemType) -> bool[src]
fn lt(&self, other: &FileSystemType) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &FileSystemType) -> bool[src]
fn le(&self, other: &FileSystemType) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &FileSystemType) -> bool[src]
fn gt(&self, other: &FileSystemType) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &FileSystemType) -> bool[src]
fn ge(&self, other: &FileSystemType) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for FileSystemType[src]
impl Ord for FileSystemTypefn cmp(&self, other: &FileSystemType) -> Ordering[src]
fn cmp(&self, other: &FileSystemType) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for FileSystemType[src]
impl Hash for FileSystemTypeAuto Trait Implementations
impl Send for FileSystemType
impl Send for FileSystemTypeimpl Sync for FileSystemType
impl Sync for FileSystemType