Struct Mount
pub struct Mount {
pub id: String,
pub mount_point: PathBuf,
pub mounted: bool,
}Expand description
Mount status.
Fields§
§id: String§mount_point: PathBufMount point.
mounted: boolWhether the mount is mounted.
Trait Implementations§
§impl<'de> Deserialize<'de> for Mount
impl<'de> Deserialize<'de> for Mount
§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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