Type Alias SSL_TICKET_AEAD_METHOD

Source
pub type SSL_TICKET_AEAD_METHOD = ssl_ticket_aead_method_st;

Aliased Type§

struct SSL_TICKET_AEAD_METHOD {
    pub max_overhead: Option<unsafe extern "C" fn(*mut ssl_st) -> usize>,
    pub seal: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, *const u8, usize) -> i32>,
    pub open: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, *const u8, usize) -> u32>,
}

Fields§

§max_overhead: Option<unsafe extern "C" fn(*mut ssl_st) -> usize>§seal: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, *const u8, usize) -> i32>§open: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, *const u8, usize) -> u32>

Trait Implementations

Source§

impl Clone for ssl_ticket_aead_method_st

Source§

fn clone(&self) -> ssl_ticket_aead_method_st

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 ssl_ticket_aead_method_st

Source§

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

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

impl Copy for ssl_ticket_aead_method_st