pub struct MountInfo {
pub target: PathBuf,
pub sources: Vec<PathBuf>,
pub status: MountStatus,
pub fs_type: String,
pub options: Vec<String>,
pub mounted_at: Option<SystemTime>,
pub pid: Option<u32>,
pub metadata: MountMetadata,
}
Expand description
Information about an active mount
Fields§
§target: PathBuf
Target mount point
sources: Vec<PathBuf>
Source directories being merged
status: MountStatus
Mount status
fs_type: String
Filesystem type (e.g., “fuse.mergerfs”)
options: Vec<String>
Mount options used
mounted_at: Option<SystemTime>
When the mount was created
pid: Option<u32>
Process ID of the mount process (if applicable)
metadata: MountMetadata
Additional platform-specific metadata
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MountInfo
impl<'de> Deserialize<'de> for MountInfo
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more