pub type ngx_table_elt_t = ngx_table_elt_s;
Aliased Type§
struct ngx_table_elt_t {
pub hash: usize,
pub key: ngx_str_t,
pub value: ngx_str_t,
pub lowcase_key: *mut u8,
pub next: *mut ngx_table_elt_s,
}
Fields§
§hash: usize
§key: ngx_str_t
§value: ngx_str_t
§lowcase_key: *mut u8
§next: *mut ngx_table_elt_s
Trait Implementations
Source§impl Clone for ngx_table_elt_s
impl Clone for ngx_table_elt_s
Source§fn clone(&self) -> ngx_table_elt_s
fn clone(&self) -> ngx_table_elt_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