Struct procfs::process::MountInfo

source ·
pub struct MountInfo {
    pub mnt_id: i32,
    pub pid: i32,
    pub majmin: String,
    pub root: String,
    pub mount_point: PathBuf,
    pub mount_options: HashMap<String, Option<String>>,
    pub opt_fields: Vec<MountOptFields>,
    pub fs_type: String,
    pub mount_source: Option<String>,
    pub super_options: HashMap<String, Option<String>>,
}
Expand description

Information about a specific mount in a process’s mount namespace.

This data is taken from the /proc/[pid]/mountinfo file.

For an example, see the mountinfo.rs example in the source repo.

Fields§

§mnt_id: i32

Mount ID. A unique ID for the mount (but may be reused after unmount)

§pid: i32

Parent mount ID. The ID of the parent mount (or of self for the root of the mount namespace’s mount tree).

If the parent mount point lies outside the process’s root directory, the ID shown here won’t have a corresponding record in mountinfo whose mount ID matches this parent mount ID (because mount points that lie outside the process’s root directory are not shown in mountinfo). As a special case of this point, the process’s root mount point may have a parent mount (for the initramfs filesystem) that lies outside the process’s root directory, and an entry for that mount point will not appear in mountinfo.

§majmin: String

The value of st_dev for files on this filesystem

§root: String

The pathname of the directory in the filesystem which forms the root of this mount.

§mount_point: PathBuf

The pathname of the mount point relative to the process’s root directory.

§mount_options: HashMap<String, Option<String>>

Per-mount options

§opt_fields: Vec<MountOptFields>

Optional fields

§fs_type: String

Filesystem type

§mount_source: Option<String>

Mount source

§super_options: HashMap<String, Option<String>>

Per-superblock options.

Implementations§

Trait Implementations§

source§

impl Clone for MountInfo

source§

fn clone(&self) -> MountInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MountInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for MountInfo

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<MountInfo, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for MountInfo

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,