[][src]Struct procfs::MountStat

pub struct MountStat {
    pub device: Option<String>,
    pub mount_point: PathBuf,
    pub fs: String,
    pub statistics: Option<MountNFSStatistics>,
}

Mount information from /proc/<pid>/mountstats.

Example:

let stats = Process::myself().unwrap().mountstats().unwrap();

for mount in stats {
    println!("{} mounted on {} wth type {}",
        mount.device.unwrap_or("??".to_owned()),
        mount.mount_point.display(),
        mount.fs
    );
}

Fields

device: Option<String>

The name of the mounted device

mount_point: PathBuf

The mountpoint within the filesystem tree

fs: String

The filesystem type

statistics: Option<MountNFSStatistics>

If the mount is NFS, this will contain various NFS statistics

Methods

impl MountStat[src]

pub fn from_reader<R: Read>(r: R) -> Vec<MountStat>[src]

Trait Implementations

impl Clone for MountStat[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for MountStat[src]

Auto Trait Implementations

impl Send for MountStat

impl Sync for MountStat

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.