Struct mbedtls_sys::ctr_drbg_context[][src]

#[repr(C)]
pub struct ctr_drbg_context { pub counter: [c_uchar; 16], pub reseed_counter: c_int, pub prediction_resistance: c_int, pub entropy_len: size_t, pub reseed_interval: c_int, pub aes_ctx: aes_context, pub f_entropy: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_uchar, arg3: size_t) -> c_int>, pub p_entropy: *mut c_void, pub mutex: threading_mutex_t, }

Fields

counter: [c_uchar; 16]reseed_counter: c_intprediction_resistance: c_intentropy_len: size_treseed_interval: c_intaes_ctx: aes_contextf_entropy: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: *mut c_uchar, arg3: size_t) -> c_int>p_entropy: *mut c_voidmutex: threading_mutex_t

Trait Implementations

impl Clone for ctr_drbg_context[src]

impl Copy for ctr_drbg_context[src]

impl Default for ctr_drbg_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.