Struct cryptographic_message_syntax::asn1::rfc3281::V2Form[][src]

pub struct V2Form {
    pub issuer_name: Option<GeneralNames>,
    pub base_certificate_id: Option<IssuerSerial>,
    pub object_digest_info: Option<ObjectDigestInfo>,
}

V2 Form

V2Form ::= SEQUENCE {
  issuerName            GeneralNames  OPTIONAL,
  baseCertificateID     [0] IssuerSerial  OPTIONAL,
  objectDigestInfo      [1] ObjectDigestInfo  OPTIONAL
    -- issuerName MUST be present in this profile
    -- baseCertificateID and objectDigestInfo MUST NOT
    -- be present in this profile
}

Fields

issuer_name: Option<GeneralNames>base_certificate_id: Option<IssuerSerial>object_digest_info: Option<ObjectDigestInfo>

Trait Implementations

impl Clone for V2Form[src]

impl Debug for V2Form[src]

impl Eq for V2Form[src]

impl PartialEq<V2Form> for V2Form[src]

impl StructuralEq for V2Form[src]

impl StructuralPartialEq for V2Form[src]

Auto Trait Implementations

impl RefUnwindSafe for V2Form

impl Send for V2Form

impl Sync for V2Form

impl Unpin for V2Form

impl UnwindSafe for V2Form

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument 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.