[][src]Struct nginx::ngx_event_aio_s

#[repr(C)]pub struct ngx_event_aio_s {
    pub data: *mut c_void,
    pub handler: ngx_event_handler_pt,
    pub file: *mut ngx_file_t,
    pub fd: ngx_fd_t,
    pub preload_handler: Option<unsafe extern "C" fn(file: *mut ngx_buf_t) -> ssize_t>,
    pub res: i64,
    pub aiocb: ngx_aiocb_t,
    pub event: ngx_event_t,
}

Fields

data: *mut c_voidhandler: ngx_event_handler_ptfile: *mut ngx_file_tfd: ngx_fd_tpreload_handler: Option<unsafe extern "C" fn(file: *mut ngx_buf_t) -> ssize_t>res: i64aiocb: ngx_aiocb_tevent: ngx_event_t

Trait Implementations

impl Clone for ngx_event_aio_s[src]

impl Copy for ngx_event_aio_s[src]

impl Debug for ngx_event_aio_s[src]

Auto Trait Implementations

impl RefUnwindSafe for ngx_event_aio_s

impl !Send for ngx_event_aio_s

impl !Sync for ngx_event_aio_s

impl Unpin for ngx_event_aio_s

impl UnwindSafe for ngx_event_aio_s

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.