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

pub struct Holder {
    pub base_certificate_id: Option<IssuerSerial>,
    pub entity_name: Option<GeneralNames>,
    pub object_digest_info: Option<ObjectDigestInfo>,
}

Holder

Holder ::= SEQUENCE {
  baseCertificateID   [0] IssuerSerial OPTIONAL,
    -- the issuer and serial number of
    -- the holder's Public Key Certificate
  entityName          [1] GeneralNames OPTIONAL,
    -- the name of the claimant or role
  objectDigestInfo    [2] ObjectDigestInfo OPTIONAL
    -- used to directly authenticate the holder,
    -- for example, an executable

Fields

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

Trait Implementations

impl Clone for Holder[src]

impl Debug for Holder[src]

impl Eq for Holder[src]

impl PartialEq<Holder> for Holder[src]

impl StructuralEq for Holder[src]

impl StructuralPartialEq for Holder[src]

Auto Trait Implementations

impl RefUnwindSafe for Holder

impl Send for Holder

impl Sync for Holder

impl Unpin for Holder

impl UnwindSafe for Holder

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.