#[repr(C)]pub struct ngx_table_elt_s {
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 moreSource§impl Debug for ngx_table_elt_s
impl Debug for ngx_table_elt_s
impl Copy for ngx_table_elt_s
Auto Trait Implementations§
impl Freeze for ngx_table_elt_s
impl RefUnwindSafe for ngx_table_elt_s
impl !Send for ngx_table_elt_s
impl !Sync for ngx_table_elt_s
impl Unpin for ngx_table_elt_s
impl UnwindSafe for ngx_table_elt_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