#[repr(C)]pub struct ngx_variable_value_t {
pub _bitfield_align_1: [u32; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>,
pub data: *mut u8,
}
Fields§
§_bitfield_align_1: [u32; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>
§data: *mut u8
Implementations§
Source§impl ngx_variable_value_t
impl ngx_variable_value_t
pub fn len(&self) -> u32
pub fn set_len(&mut self, val: u32)
pub unsafe fn len_raw(this: *const ngx_variable_value_t) -> u32
pub unsafe fn set_len_raw(this: *mut ngx_variable_value_t, val: u32)
pub fn valid(&self) -> u32
pub fn set_valid(&mut self, val: u32)
pub unsafe fn valid_raw(this: *const ngx_variable_value_t) -> u32
pub unsafe fn set_valid_raw(this: *mut ngx_variable_value_t, val: u32)
pub fn no_cacheable(&self) -> u32
pub fn set_no_cacheable(&mut self, val: u32)
pub unsafe fn no_cacheable_raw(this: *const ngx_variable_value_t) -> u32
pub unsafe fn set_no_cacheable_raw(this: *mut ngx_variable_value_t, val: u32)
pub fn not_found(&self) -> u32
pub fn set_not_found(&mut self, val: u32)
pub unsafe fn not_found_raw(this: *const ngx_variable_value_t) -> u32
pub unsafe fn set_not_found_raw(this: *mut ngx_variable_value_t, val: u32)
pub fn escape(&self) -> u32
pub fn set_escape(&mut self, val: u32)
pub unsafe fn escape_raw(this: *const ngx_variable_value_t) -> u32
pub unsafe fn set_escape_raw(this: *mut ngx_variable_value_t, val: u32)
pub fn new_bitfield_1( len: u32, valid: u32, no_cacheable: u32, not_found: u32, escape: u32, ) -> __BindgenBitfieldUnit<[u8; 4]>
Trait Implementations§
Source§impl Clone for ngx_variable_value_t
impl Clone for ngx_variable_value_t
Source§fn clone(&self) -> ngx_variable_value_t
fn clone(&self) -> ngx_variable_value_t
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_variable_value_t
impl Debug for ngx_variable_value_t
impl Copy for ngx_variable_value_t
Auto Trait Implementations§
impl Freeze for ngx_variable_value_t
impl RefUnwindSafe for ngx_variable_value_t
impl !Send for ngx_variable_value_t
impl !Sync for ngx_variable_value_t
impl Unpin for ngx_variable_value_t
impl UnwindSafe for ngx_variable_value_t
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