#[repr(C)]
pub struct ssl_transform {
Show 18 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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.