#[repr(C)]pub struct ngx_conf_s {
pub name: *mut i8,
pub args: *mut ngx_array_t,
pub cycle: *mut ngx_cycle_s,
pub pool: *mut ngx_pool_s,
pub temp_pool: *mut ngx_pool_s,
pub conf_file: *mut ngx_conf_file_t,
pub log: *mut ngx_log_s,
pub ctx: *mut c_void,
pub module_type: usize,
pub cmd_type: usize,
pub handler: Option<unsafe extern "C" fn(_: *mut ngx_conf_s, _: *mut ngx_command_s, _: *mut c_void) -> *mut i8>,
pub handler_conf: *mut c_void,
}
Fields§
§name: *mut i8
§args: *mut ngx_array_t
§cycle: *mut ngx_cycle_s
§pool: *mut ngx_pool_s
§temp_pool: *mut ngx_pool_s
§conf_file: *mut ngx_conf_file_t
§log: *mut ngx_log_s
§ctx: *mut c_void
§module_type: usize
§cmd_type: usize
§handler: Option<unsafe extern "C" fn(_: *mut ngx_conf_s, _: *mut ngx_command_s, _: *mut c_void) -> *mut i8>
§handler_conf: *mut c_void
Trait Implementations§
Source§impl Clone for ngx_conf_s
impl Clone for ngx_conf_s
Source§fn clone(&self) -> ngx_conf_s
fn clone(&self) -> ngx_conf_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 moreSource§impl Debug for ngx_conf_s
impl Debug for ngx_conf_s
impl Copy for ngx_conf_s
Auto Trait Implementations§
impl Freeze for ngx_conf_s
impl RefUnwindSafe for ngx_conf_s
impl !Send for ngx_conf_s
impl !Sync for ngx_conf_s
impl Unpin for ngx_conf_s
impl UnwindSafe for ngx_conf_s
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more