Struct procinfo::pid::Mountinfo [] [src]

pub struct Mountinfo {
    pub mount_id: isize,
    pub parent_id: isize,
    pub major: usize,
    pub minor: usize,
    pub root: PathBuf,
    pub mount_point: PathBuf,
    pub mount_options: Vec<MountOption>,
    pub opt_fields: Vec<OptionalField>,
    pub fs_type: (String, Option<String>),
    pub mount_src: Option<String>,
    pub super_opts: Vec<String>,
}

Process mounts information.

See proc(5) for format details.

Fields

Unique ID for the mount.

ID of the parent mount.

Device major ID (class).

Device minor ID (instance).

Pathname which forms the root of this mount.

Mount pathname relative to the process's root.

mount options.

Optional fields (tag with optional value).

Filesystem type (main type with optional sub-type).

Filesystem specific information.

Superblock options.

Trait Implementations

impl Debug for Mountinfo
[src]

Formats the value using the given formatter.

impl PartialEq for Mountinfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Mountinfo
[src]

impl Hash for Mountinfo
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more