pub struct MountInfo {
pub dev_name: String,
pub mount_point: String,
pub fs_type: String,
}Expand description
Information about a mounted filesystem.
Fields§
§dev_name: StringDevice name or source.
mount_point: StringMount point path.
fs_type: StringFilesystem type (e.g. “ext4”, “tmpfs”).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MountInfo
impl RefUnwindSafe for MountInfo
impl Send for MountInfo
impl Sync for MountInfo
impl Unpin for MountInfo
impl UnsafeUnpin for MountInfo
impl UnwindSafe for MountInfo
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