[][src]Struct nginx::ngx_cycle_s

#[repr(C)]pub struct ngx_cycle_s {
    pub conf_ctx: *mut *mut *mut *mut c_void,
    pub pool: *mut ngx_pool_t,
    pub log: *mut ngx_log_t,
    pub new_log: ngx_log_t,
    pub log_use_stderr: ngx_uint_t,
    pub files: *mut *mut ngx_connection_t,
    pub free_connections: *mut ngx_connection_t,
    pub free_connection_n: ngx_uint_t,
    pub modules: *mut *mut ngx_module_t,
    pub modules_n: ngx_uint_t,
    pub modules_used: ngx_uint_t,
    pub reusable_connections_queue: ngx_queue_t,
    pub reusable_connections_n: ngx_uint_t,
    pub connections_reuse_time: time_t,
    pub listening: ngx_array_t,
    pub paths: ngx_array_t,
    pub config_dump: ngx_array_t,
    pub config_dump_rbtree: ngx_rbtree_t,
    pub config_dump_sentinel: ngx_rbtree_node_t,
    pub open_files: ngx_list_t,
    pub shared_memory: ngx_list_t,
    pub connection_n: ngx_uint_t,
    pub files_n: ngx_uint_t,
    pub connections: *mut ngx_connection_t,
    pub read_events: *mut ngx_event_t,
    pub write_events: *mut ngx_event_t,
    pub old_cycle: *mut ngx_cycle_t,
    pub conf_file: ngx_str_t,
    pub conf_param: ngx_str_t,
    pub conf_prefix: ngx_str_t,
    pub prefix: ngx_str_t,
    pub lock_file: ngx_str_t,
    pub hostname: ngx_str_t,
}

Fields

conf_ctx: *mut *mut *mut *mut c_voidpool: *mut ngx_pool_tlog: *mut ngx_log_tnew_log: ngx_log_tlog_use_stderr: ngx_uint_tfiles: *mut *mut ngx_connection_tfree_connections: *mut ngx_connection_tfree_connection_n: ngx_uint_tmodules: *mut *mut ngx_module_tmodules_n: ngx_uint_tmodules_used: ngx_uint_treusable_connections_queue: ngx_queue_treusable_connections_n: ngx_uint_tconnections_reuse_time: time_tlistening: ngx_array_tpaths: ngx_array_tconfig_dump: ngx_array_tconfig_dump_rbtree: ngx_rbtree_tconfig_dump_sentinel: ngx_rbtree_node_topen_files: ngx_list_tshared_memory: ngx_list_tconnection_n: ngx_uint_tfiles_n: ngx_uint_tconnections: *mut ngx_connection_tread_events: *mut ngx_event_twrite_events: *mut ngx_event_told_cycle: *mut ngx_cycle_tconf_file: ngx_str_tconf_param: ngx_str_tconf_prefix: ngx_str_tprefix: ngx_str_tlock_file: ngx_str_thostname: ngx_str_t

Trait Implementations

impl Clone for ngx_cycle_s[src]

impl Copy for ngx_cycle_s[src]

impl Debug for ngx_cycle_s[src]

Auto Trait Implementations

impl RefUnwindSafe for ngx_cycle_s

impl !Send for ngx_cycle_s

impl !Sync for ngx_cycle_s

impl Unpin for ngx_cycle_s

impl UnwindSafe for ngx_cycle_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.