Struct mbedtls_sys::ssl_ticket_context[][src]

#[repr(C)]
pub struct ssl_ticket_context { pub keys: [ssl_ticket_key; 2], pub active: c_uchar, pub ticket_lifetime: u32, pub f_rng: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_uchar, arg3: size_t) -> c_int>, pub p_rng: *mut c_void, pub mutex: threading_mutex_t, }

Fields

keys: [ssl_ticket_key; 2]active: c_ucharticket_lifetime: u32f_rng: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_uchar, arg3: size_t) -> c_int>p_rng: *mut c_voidmutex: threading_mutex_t

Trait Implementations

impl Clone for ssl_ticket_context[src]

impl Copy for ssl_ticket_context[src]

impl Default for ssl_ticket_context[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.