Struct cgroups_rs::hierarchies::Mountinfo[][src]

pub struct Mountinfo {
    pub mount_point: PathBuf,
    pub fs_type: (String, Option<String>),
    pub super_opts: Vec<String>,
}

Process mounts information.

See proc(5) for format details.

Fields

mount_point: PathBuf

Mount pathname relative to the process’s root.

fs_type: (String, Option<String>)

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

super_opts: Vec<String>

Superblock options.

Trait Implementations

impl Debug for Mountinfo[src]

impl Eq for Mountinfo[src]

impl Hash for Mountinfo[src]

impl PartialEq<Mountinfo> for Mountinfo[src]

impl StructuralEq for Mountinfo[src]

impl StructuralPartialEq for Mountinfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.