pub struct MountInfos(pub Vec<MountInfo>);
Expand description
Information about a all mounts in a process’s mount namespace.
This data is taken from the /proc/[pid]/mountinfo
file.
Tuple Fields§
§0: Vec<MountInfo>
Implementations§
Trait Implementations§
source§impl FromBufRead for MountInfos
impl FromBufRead for MountInfos
fn from_buf_read<R: BufRead>(r: R) -> ProcResult<Self>
source§impl<'a> IntoIterator for &'a MountInfos
impl<'a> IntoIterator for &'a MountInfos
Auto Trait Implementations§
impl Freeze for MountInfos
impl RefUnwindSafe for MountInfos
impl Send for MountInfos
impl Sync for MountInfos
impl Unpin for MountInfos
impl UnwindSafe for MountInfos
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more