pub struct MountInfo {
pub path: PathBuf,
pub read_only: bool,
}Expand description
Information about a mount point.
Fields§
§path: PathBufThe mount path (e.g., “/mnt/project”).
read_only: boolWhether this mount is read-only.
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 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