[][src]Struct vmm_sys_util::aio::IoEvent

#[repr(C)]pub struct IoEvent {
    pub data: c_ulonglong,
    pub obj: c_ulonglong,
    pub res: c_longlong,
    pub res2: c_longlong,
}

Wrapper over the io_event structure.

Fields

data: c_ulonglongobj: c_ulonglongres: c_longlongres2: c_longlong

Trait Implementations

impl Clone for IoEvent[src]

impl Copy for IoEvent[src]

impl Debug for IoEvent[src]

impl Default for IoEvent[src]

Auto Trait Implementations

impl RefUnwindSafe for IoEvent

impl Send for IoEvent

impl Sync for IoEvent

impl Unpin for IoEvent

impl UnwindSafe for IoEvent

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.