#[repr(C)]
pub union ssl_premaster_secret {
    pub _pms_rsa: [c_uchar; 48],
    pub _pms_dhm: [c_uchar; 1024],
    pub _pms_ecdh: [c_uchar; 66],
    pub _pms_psk: [c_uchar; 68],
    pub _pms_dhe_psk: [c_uchar; 1060],
    pub _pms_rsa_psk: [c_uchar; 84],
    pub _pms_ecdhe_psk: [c_uchar; 102],
}

Fields

_pms_rsa: [c_uchar; 48]_pms_dhm: [c_uchar; 1024]_pms_ecdh: [c_uchar; 66]_pms_psk: [c_uchar; 68]_pms_dhe_psk: [c_uchar; 1060]_pms_rsa_psk: [c_uchar; 84]_pms_ecdhe_psk: [c_uchar; 102]

Implementations

👎 Deprecated
👎 Deprecated
👎 Deprecated
👎 Deprecated
👎 Deprecated
👎 Deprecated
👎 Deprecated

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.