Type Alias ngx_command_t

Source
pub type ngx_command_t = ngx_command_s;

Aliased Type§

struct ngx_command_t {
    pub name: ngx_str_t,
    pub type_: usize,
    pub set: Option<unsafe extern "C" fn(_: *mut ngx_conf_s, _: *mut ngx_command_s, _: *mut c_void) -> *mut i8>,
    pub conf: usize,
    pub offset: usize,
    pub post: *mut c_void,
}

Fields§

§name: ngx_str_t§type_: usize§set: Option<unsafe extern "C" fn(_: *mut ngx_conf_s, _: *mut ngx_command_s, _: *mut c_void) -> *mut i8>§conf: usize§offset: usize§post: *mut c_void