Struct mbedtls_sys::entropy_context[][src]

#[repr(C)]
pub struct entropy_context { pub accumulator_started: c_int, pub accumulator: sha512_context, pub source_count: c_int, pub source: [entropy_source_state; 20], pub mutex: threading_mutex_t, }

Fields

accumulator_started: c_intaccumulator: sha512_contextsource_count: c_intsource: [entropy_source_state; 20]mutex: threading_mutex_t

Trait Implementations

impl Clone for entropy_context[src]

impl Copy for entropy_context[src]

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