Struct dpdk_unix::android_linux::mounts::Mount[][src]

pub struct Mount {
    pub source: CString,
    pub mount_point: PathBuf,
    pub file_system_type: FileSystemType,
    pub mount_options: HashMap<String, Option<String>>,
    // some fields omitted
}

Represents a mount.

Fields

eg eg /dev/sda1, proc, etc; not really that useful.

Mount point.

File system type.

eg proc, sysfs, hugetlbs, ext4; listed in second column of /proc/filesystems/

Mount options.

eg nodev mode=0177

Methods

impl Mount
[src]

Unmounts.

Does this mount have this file system type?

New instance for file systems which do not have a source (eg hugetlbs).

Mount.

Trait Implementations

impl Debug for Mount
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Mount

impl Sync for Mount