[][src]Struct nc::types::io_event_t

#[repr(C)]
pub struct io_event_t {
    pub data: u64,
    pub obj: u64,
    pub res: i64,
    pub res2: i64,
}

read() from /dev/aio returns these structures.

Fields

data: u64

the data field from the iocb

obj: u64

what iocb this event came from

res: i64

result code for this event

res2: i64

secondary result

Auto Trait Implementations

impl Unpin for io_event_t

impl Send for io_event_t

impl Sync for io_event_t

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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