pub struct OwnedTrustAnchor {
subject: Vec<u8>,
spki: Vec<u8>,
name_constraints: Option<Vec<u8>>,
}
Expand description
A trust anchor, commonly known as a “Root Certificate.”
Fields§
§subject: Vec<u8>
§spki: Vec<u8>
§name_constraints: Option<Vec<u8>>
Implementations§
source§impl OwnedTrustAnchor
impl OwnedTrustAnchor
sourcepub fn to_trust_anchor(&self) -> TrustAnchor<'_>
pub fn to_trust_anchor(&self) -> TrustAnchor<'_>
Get a webpki::TrustAnchor
by borrowing the owned elements.
sourcepub fn from_subject_spki_name_constraints(
subject: impl Into<Vec<u8>>,
spki: impl Into<Vec<u8>>,
name_constraints: Option<impl Into<Vec<u8>>>,
) -> Self
pub fn from_subject_spki_name_constraints( subject: impl Into<Vec<u8>>, spki: impl Into<Vec<u8>>, name_constraints: Option<impl Into<Vec<u8>>>, ) -> Self
Constructs an OwnedTrustAnchor
from its components.
subject
is the subject field of the trust anchor.
spki
is the subjectPublicKeyInfo
field of the trust anchor.
name_constraints
is the value of a DER-encoded name constraints to
apply for this trust anchor, if any.
Trait Implementations§
source§impl Clone for OwnedTrustAnchor
impl Clone for OwnedTrustAnchor
source§fn clone(&self) -> OwnedTrustAnchor
fn clone(&self) -> OwnedTrustAnchor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for OwnedTrustAnchor
impl RefUnwindSafe for OwnedTrustAnchor
impl Send for OwnedTrustAnchor
impl Sync for OwnedTrustAnchor
impl Unpin for OwnedTrustAnchor
impl UnwindSafe for OwnedTrustAnchor
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneAny for T
impl<T> CloneAny for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [
TupleList
], of an [Prepend::prepend()
] call,
including the prepended entry.