Type Alias ngx_table_elt_t

Source
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

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl Debug for ngx_table_elt_s

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Copy for ngx_table_elt_s