pub struct CachedMountInfo {
pub target: PathBuf,
pub sources: Vec<PathBuf>,
pub mount_options: MountOptions,
pub created_at: SystemTime,
pub mount_command: String,
pub pid: Option<u32>,
}Expand description
Cached information about a mount
Fields§
§target: PathBuf§sources: Vec<PathBuf>§mount_options: MountOptions§created_at: SystemTime§mount_command: String§pid: Option<u32>Trait Implementations§
Source§impl Clone for CachedMountInfo
impl Clone for CachedMountInfo
Source§fn clone(&self) -> CachedMountInfo
fn clone(&self) -> CachedMountInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CachedMountInfo
impl Debug for CachedMountInfo
Source§impl<'de> Deserialize<'de> for CachedMountInfo
impl<'de> Deserialize<'de> for CachedMountInfo
Source§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 CachedMountInfo
impl RefUnwindSafe for CachedMountInfo
impl Send for CachedMountInfo
impl Sync for CachedMountInfo
impl Unpin for CachedMountInfo
impl UnsafeUnpin for CachedMountInfo
impl UnwindSafe for CachedMountInfo
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