Struct procfs::process::MountInfo [−][src]
Information about a specific mount in a process’s mount namespace.
This data is taken from the /proc/[pid]/mountinfo
file
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 filesytem
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.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MountInfo
impl Send for MountInfo
impl Sync for MountInfo
impl Unpin for MountInfo
impl UnwindSafe for MountInfo
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,