[][src]Union nginx::pkcs7_st__bindgen_ty_1

#[repr(C)]pub union pkcs7_st__bindgen_ty_1 {
    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,
    // some fields omitted
}

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

Trait Implementations

impl Clone for pkcs7_st__bindgen_ty_1[src]

impl Copy for pkcs7_st__bindgen_ty_1[src]

Auto Trait Implementations

impl RefUnwindSafe for pkcs7_st__bindgen_ty_1

impl !Send for pkcs7_st__bindgen_ty_1

impl !Sync for pkcs7_st__bindgen_ty_1

impl Unpin for pkcs7_st__bindgen_ty_1

impl UnwindSafe for pkcs7_st__bindgen_ty_1

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.