Struct mbedtls_sys::ssl_transform[][src]

#[repr(C)]
pub struct ssl_transform {
Show fields pub minlen: size_t, pub ivlen: size_t, pub fixed_ivlen: size_t, pub maclen: size_t, pub taglen: size_t, pub iv_enc: [c_uchar; 16], pub iv_dec: [c_uchar; 16], pub mac_enc: [c_uchar; 20], pub mac_dec: [c_uchar; 20], pub md_ctx_enc: md_context_t, pub md_ctx_dec: md_context_t, pub encrypt_then_mac: c_int, pub cipher_ctx_enc: cipher_context_t, pub cipher_ctx_dec: cipher_context_t, pub minor_ver: c_int, pub ctx_deflate: z_stream, pub ctx_inflate: z_stream, pub randbytes: [c_uchar; 64],
}

Fields

minlen: size_tivlen: size_tfixed_ivlen: size_tmaclen: size_ttaglen: size_tiv_enc: [c_uchar; 16]iv_dec: [c_uchar; 16]mac_enc: [c_uchar; 20]mac_dec: [c_uchar; 20]md_ctx_enc: md_context_tmd_ctx_dec: md_context_tencrypt_then_mac: c_intcipher_ctx_enc: cipher_context_tcipher_ctx_dec: cipher_context_tminor_ver: c_intctx_deflate: z_streamctx_inflate: z_streamrandbytes: [c_uchar; 64]

Trait Implementations

impl Clone for ssl_transform[src]

impl Copy for ssl_transform[src]

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