#[repr(C)]pub struct ssl_session {Show 14 fields
pub mfl_code: c_uchar,
pub start: time_t,
pub ciphersuite: c_int,
pub compression: c_int,
pub id_len: usize,
pub id: [c_uchar; 32],
pub master: [c_uchar; 48],
pub peer_cert: *mut x509_crt,
pub verify_result: u32,
pub ticket: *mut c_uchar,
pub ticket_len: usize,
pub ticket_lifetime: u32,
pub trunc_hmac: c_int,
pub encrypt_then_mac: c_int,
}Fields§
§mfl_code: c_uchar§start: time_t§ciphersuite: c_int§compression: c_int§id_len: usize§id: [c_uchar; 32]§master: [c_uchar; 48]§peer_cert: *mut x509_crt§verify_result: u32§ticket: *mut c_uchar§ticket_len: usize§ticket_lifetime: u32§trunc_hmac: c_int§encrypt_then_mac: c_intTrait Implementations§
Source§impl Clone for ssl_session
impl Clone for ssl_session
Source§fn clone(&self) -> ssl_session
fn clone(&self) -> ssl_session
Returns a duplicate 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 Default for ssl_session
impl Default for ssl_session
impl Copy for ssl_session
Auto Trait Implementations§
impl Freeze for ssl_session
impl RefUnwindSafe for ssl_session
impl !Send for ssl_session
impl !Sync for ssl_session
impl Unpin for ssl_session
impl UnwindSafe for ssl_session
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