[][src]Struct nginx::ngx_conf_s

#[repr(C)]pub struct ngx_conf_s {
    pub name: *mut c_char,
    pub args: *mut ngx_array_t,
    pub cycle: *mut ngx_cycle_t,
    pub pool: *mut ngx_pool_t,
    pub temp_pool: *mut ngx_pool_t,
    pub conf_file: *mut ngx_conf_file_t,
    pub log: *mut ngx_log_t,
    pub ctx: *mut c_void,
    pub module_type: ngx_uint_t,
    pub cmd_type: ngx_uint_t,
    pub handler: ngx_conf_handler_pt,
    pub handler_conf: *mut c_void,
}

Fields

name: *mut c_charargs: *mut ngx_array_tcycle: *mut ngx_cycle_tpool: *mut ngx_pool_ttemp_pool: *mut ngx_pool_tconf_file: *mut ngx_conf_file_tlog: *mut ngx_log_tctx: *mut c_voidmodule_type: ngx_uint_tcmd_type: ngx_uint_thandler: ngx_conf_handler_pthandler_conf: *mut c_void

Trait Implementations

impl Clone for ngx_conf_s[src]

impl Copy for ngx_conf_s[src]

impl Debug for ngx_conf_s[src]

Auto Trait Implementations

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

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.