Struct webpki::trust_anchor::TlsClientTrustAnchors
source ยท pub struct TlsClientTrustAnchors<'a>(pub &'a [TrustAnchor<'a>]);
๐Deprecated since 0.101.2: The per-usage trust anchor representations and verification functions are deprecated in favor of the general-purpose
TrustAnchor
type and EndEntity::verify_for_usage
function. The new verify_for_usage
function expresses trust anchor and end entity purpose with the key usage argument.Expand description
Trust anchors which may be used for authenticating clients.
Tuple Fieldsยง
ยง0: &'a [TrustAnchor<'a>]
๐Deprecated since 0.101.2: The per-usage trust anchor representations and verification functions are deprecated in favor of the general-purpose
TrustAnchor
type and EndEntity::verify_for_usage
function. The new verify_for_usage
function expresses trust anchor and end entity purpose with the key usage argument.Trait Implementationsยง
Auto Trait Implementationsยง
impl<'a> Freeze for TlsClientTrustAnchors<'a>
impl<'a> RefUnwindSafe for TlsClientTrustAnchors<'a>
impl<'a> Send for TlsClientTrustAnchors<'a>
impl<'a> Sync for TlsClientTrustAnchors<'a>
impl<'a> Unpin for TlsClientTrustAnchors<'a>
impl<'a> UnwindSafe for TlsClientTrustAnchors<'a>
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