pub struct OwnedTrustAnchor { /* private fields */ }
Expand description

A trust anchor, commonly known as a “Root Certificate.”

Implementations

Constructs an OwnedTrustAnchor from its components.

All inputs are DER-encoded.

subject is the Subject field of the trust anchor.

spki is the SubjectPublicKeyInfo field of the trust anchor.

name_constraints is the Name Constraints to apply for this trust anchor, if any.

Return the subject field.

This can be decoded using x509-parser’s FromDer trait.

use x509_parser::traits::FromDer;
println!("{}", x509_parser::x509::X509Name::from_der(anchor.subject())?.1);

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

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.