pub struct SubjectPublicKeyInfo<'a> {
    pub algorithm: AlgorithmIdentifier<'a>,
    pub subject_public_key: BitString<'a>,
    pub raw: &'a [u8],
}

Fields

algorithm: AlgorithmIdentifier<'a>subject_public_key: BitString<'a>raw: &'a [u8]

A raw unparsed PKIX, ASN.1 DER form (see RFC 5280, Section 4.1).

Note: use the Self::parsed() function to parse this object.

Implementations

Attempt to parse the public key, and return the parsed version or an error

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Parse the SubjectPublicKeyInfo struct portion of a DER-encoded X.509 Certificate

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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.