#[repr(C)]
pub union PKCS7_data {
    pub ptr: *mut c_char,
    pub data: *mut ASN1_OCTET_STRING,
    pub sign: *mut PKCS7_SIGNED,
    pub enveloped: *mut PKCS7_ENVELOPE,
    pub signed_and_enveloped: *mut PKCS7_SIGN_ENVELOPE,
    pub digest: *mut PKCS7_DIGEST,
    pub encrypted: *mut PKCS7_ENCRYPT,
    pub other: *mut ASN1_TYPE,
}

Fields

ptr: *mut c_chardata: *mut ASN1_OCTET_STRINGsign: *mut PKCS7_SIGNEDenveloped: *mut PKCS7_ENVELOPEsigned_and_enveloped: *mut PKCS7_SIGN_ENVELOPEdigest: *mut PKCS7_DIGESTencrypted: *mut PKCS7_ENCRYPTother: *mut ASN1_TYPE

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 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.