[][src]Struct libc_interface::kevent64_s

#[repr(C)]pub struct kevent64_s {
    pub ident: uint64_t,
    pub filter: int16_t,
    pub flags: uint16_t,
    pub fflags: uint32_t,
    pub data: int64_t,
    pub udata: uint64_t,
    pub ext: [uint64_t; 2],
}

Fields

ident: uint64_tfilter: int16_tflags: uint16_tfflags: uint32_tdata: int64_tudata: uint64_text: [uint64_t; 2]

Trait Implementations

impl Clone for kevent64_s[src]

impl Copy for kevent64_s[src]

impl Debug for kevent64_s[src]

impl Eq for kevent64_s[src]

impl Hash for kevent64_s[src]

impl PartialEq<kevent64_s> for kevent64_s[src]

impl StructuralEq for kevent64_s[src]

impl StructuralPartialEq for kevent64_s[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.