#[repr(C)]pub struct kevent {
pub ident: uintptr_t,
pub filter: c_short,
pub flags: c_ushort,
pub fflags: c_uint,
pub data: i64,
pub udata: *mut c_void,
}
Fields
ident: uintptr_t
filter: c_short
flags: c_ushort
fflags: c_uint
data: i64
udata: *mut c_void
Trait Implementations
sourceimpl Hash for kevent
impl Hash for kevent
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
1.3.0fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Copy for kevent
impl Eq for kevent
impl StructuralEq for kevent
impl StructuralPartialEq for kevent
Auto Trait Implementations
impl RefUnwindSafe for kevent
impl !Send for kevent
impl !Sync for kevent
impl Unpin for kevent
impl UnwindSafe for kevent
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more