Type Alias ngx_event_aio_t

Source
pub type ngx_event_aio_t = ngx_event_aio_s;

Aliased Type§

struct ngx_event_aio_t {
    pub data: *mut c_void,
    pub handler: Option<unsafe extern "C" fn(*mut ngx_event_s)>,
    pub file: *mut ngx_file_s,
    pub fd: i32,
    pub res: i64,
    pub aiocb: iocb,
    pub event: ngx_event_s,
}

Fields§

§data: *mut c_void§handler: Option<unsafe extern "C" fn(*mut ngx_event_s)>§file: *mut ngx_file_s§fd: i32§res: i64§aiocb: iocb§event: ngx_event_s

Trait Implementations

Source§

impl Clone for ngx_event_aio_s

Source§

fn clone(&self) -> ngx_event_aio_s

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ngx_event_aio_s

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Copy for ngx_event_aio_s