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
impl Clone for ngx_event_aio_s
Source§fn clone(&self) -> ngx_event_aio_s
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more