#[repr(C)]pub struct ngx_ssl_ticket_key_t {
pub name: [u8; 16],
pub hmac_key: [u8; 32],
pub aes_key: [u8; 32],
pub expire: i64,
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>,
pub __bindgen_padding_0: [u16; 3],
}
Fields§
§name: [u8; 16]
§hmac_key: [u8; 32]
§aes_key: [u8; 32]
§expire: i64
§_bitfield_align_1: [u8; 0]
§_bitfield_1: __BindgenBitfieldUnit<[u8; 2]>
§__bindgen_padding_0: [u16; 3]
Implementations§
Source§impl ngx_ssl_ticket_key_t
impl ngx_ssl_ticket_key_t
pub fn size(&self) -> u32
pub fn set_size(&mut self, val: u32)
pub unsafe fn size_raw(this: *const ngx_ssl_ticket_key_t) -> u32
pub unsafe fn set_size_raw(this: *mut ngx_ssl_ticket_key_t, val: u32)
pub fn new_bitfield_1(size: u32, shared: u32) -> __BindgenBitfieldUnit<[u8; 2]>
Trait Implementations§
Source§impl Clone for ngx_ssl_ticket_key_t
impl Clone for ngx_ssl_ticket_key_t
Source§fn clone(&self) -> ngx_ssl_ticket_key_t
fn clone(&self) -> ngx_ssl_ticket_key_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_ssl_ticket_key_t
impl Debug for ngx_ssl_ticket_key_t
impl Copy for ngx_ssl_ticket_key_t
Auto Trait Implementations§
impl Freeze for ngx_ssl_ticket_key_t
impl RefUnwindSafe for ngx_ssl_ticket_key_t
impl Send for ngx_ssl_ticket_key_t
impl Sync for ngx_ssl_ticket_key_t
impl Unpin for ngx_ssl_ticket_key_t
impl UnwindSafe for ngx_ssl_ticket_key_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