pub struct InotifyEvent {
pub wd: i32,
pub mask: u32,
pub cookie: u32,
pub name: Option<String>,
}Expand description
An inotify event delivered to userspace.
Fields§
§wd: i32Watch descriptor that triggered this event.
mask: u32Bitmask of event types (IN_CREATE, IN_MODIFY, etc.).
Cookie for pairing MOVED_FROM / MOVED_TO events (0 if not a move).
name: Option<String>Optional filename associated with the event (for directory watches).
Trait Implementations§
Source§impl Clone for InotifyEvent
impl Clone for InotifyEvent
Source§fn clone(&self) -> InotifyEvent
fn clone(&self) -> InotifyEvent
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InotifyEvent
impl RefUnwindSafe for InotifyEvent
impl Send for InotifyEvent
impl Sync for InotifyEvent
impl Unpin for InotifyEvent
impl UnwindSafe for InotifyEvent
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)