[][src]Struct vmm_sys_util::aio::IoControlBlock

#[repr(C)]pub struct IoControlBlock {
    pub aio_data: c_ulonglong,
    pub aio_key: c_uint,
    pub aio_reserved1: c_uint,
    pub aio_lio_opcode: c_ushort,
    pub aio_reqprio: c_short,
    pub aio_fildes: c_uint,
    pub aio_buf: c_ulonglong,
    pub aio_nbytes: c_ulonglong,
    pub aio_offset: c_longlong,
    pub aio_reserved2: c_ulonglong,
    pub aio_flags: c_uint,
    pub aio_resfd: c_uint,
}

Wrapper over the iocb structure.

Fields

aio_data: c_ulonglongaio_key: c_uintaio_reserved1: c_uintaio_lio_opcode: c_ushortaio_reqprio: c_shortaio_fildes: c_uintaio_buf: c_ulonglongaio_nbytes: c_ulonglongaio_offset: c_longlongaio_reserved2: c_ulonglongaio_flags: c_uintaio_resfd: c_uint

Trait Implementations

impl Clone for IoControlBlock[src]

impl Copy for IoControlBlock[src]

impl Debug for IoControlBlock[src]

impl Default for IoControlBlock[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> 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.