[][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 Default for MountInfo[src]

impl Clone for MountInfo[src]

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

Performs copy-assignment from source. Read more

impl From<MountInfo> for AbstractMountElement[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]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

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

Auto Trait Implementations

impl Send for MountInfo

impl Sync for MountInfo

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> ToString for T where
    T: Display + ?Sized
[src]

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.