pub struct Mount {
pub device: String,
pub mountpoint: String,
pub filesystem: String,
}
Expand description
Informations about the mount point of a drives patition
Fields§
§device: String
the partitions linux device name
mountpoint: String
the path of the mount point
filesystem: String
the filesystem used to mount the partition
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Mount
impl RefUnwindSafe for Mount
impl Send for Mount
impl Sync for Mount
impl Unpin for Mount
impl UnwindSafe for Mount
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