pub struct MountEvent {
pub mounted: Vec<LinuxMount>,
pub unmounted: Vec<LinuxMount>,
pub coalesced: bool,
pub initial: bool,
}Expand description
Event generated when the mounted filesystems change.
Fields§
§mounted: Vec<LinuxMount>The new filesystems that have been mounted.
unmounted: Vec<LinuxMount>The old filesystems that have been unmounted.
coalesced: boolIndicates whether this is a coalesced event.
initial: boolIndicates whether this is the first event, which contains the list of all the mounts.
Auto Trait Implementations§
impl Freeze for MountEvent
impl RefUnwindSafe for MountEvent
impl Send for MountEvent
impl Sync for MountEvent
impl Unpin for MountEvent
impl UnwindSafe for MountEvent
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