Struct inotify_event
#[repr(C)]
pub struct inotify_event { pub wd: c_int, pub mask: u32, pub cookie: u32, pub len: u32 }
Fields
wd: c_intmask: u32cookie: u32len: u32
Trait Implementations
impl Clone for inotify_event
fn clone(&self) -> inotify_event
impl Copy for inotify_event
impl Debug for inotify_event
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for inotify_event
impl Hash for inotify_event
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for inotify_event
fn eq(&self, other: &inotify_event) -> bool
impl StructuralPartialEq for inotify_event
Auto Trait Implementations
impl Freeze for inotify_event
impl RefUnwindSafe for inotify_event
impl Send for inotify_event
impl Sync for inotify_event
impl Unpin for inotify_event
impl UnsafeUnpin for inotify_event
impl UnwindSafe for inotify_event
Blanket Implementations
impl<T> Any for inotify_event
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for inotify_event
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for inotify_event
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for inotify_event
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for inotify_event
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for inotify_event
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for inotify_event
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for inotify_event
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>