[][src]Struct proc_mounts::MountInfo

pub struct MountInfo {
    pub source: PathBuf,
    pub dest: PathBuf,
    pub fstype: String,
    pub options: Vec<String>,
    pub dump: i32,
    pub pass: i32,
}

A mount entry which contains information regarding how and where a source is mounted.

Fields

source: PathBuf

The source which is mounted.

dest: PathBuf

Where the source is mounted.

fstype: String

The type of the mounted file system.

options: Vec<String>

Options specified for this file system.

dump: i32

Defines if the file system should be dumped.

pass: i32

Defines if the file system should be checked, and in what order.

Methods

impl MountInfo[src]

pub fn parse_line(line: &str) -> Result<MountInfo>[src]

Deprecated

Attempt to parse a /proc/mounts-like line.

Trait Implementations

impl From<MountInfo> for AbstractMountElement[src]

impl Clone for MountInfo[src]

impl Default for MountInfo[src]

impl Eq for MountInfo[src]

impl PartialEq<MountInfo> for MountInfo[src]

impl Display for MountInfo[src]

impl Debug for MountInfo[src]

impl FromStr for MountInfo[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for MountInfo[src]

impl StructuralPartialEq for MountInfo[src]

impl StructuralEq for MountInfo[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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