[][src]Struct trust_dns_client::rr::dnssec::TrustAnchor

pub struct TrustAnchor { /* fields omitted */ }

The root set of trust anchors for validating DNSSec, anything in this set will be trusted

Implementations

impl TrustAnchor[src]

pub fn new() -> TrustAnchor[src]

Creates a new empty trust anchor set

pub fn contains_dnskey_bytes(&self, other_key: &[u8]) -> bool[src]

determines if the key is in the trust anchor set with the raw dnskey bytes

Arguments

  • other_key - The raw dnskey in bytes

pub fn contains<P>(&self, other_key: &P) -> bool where
    P: PublicKey
[src]

determines if the key is in the trust anchor set

pub fn insert_trust_anchor<P>(&mut self, public_key: &P) where
    P: PublicKey
[src]

inserts the trust_anchor to the trusted chain

pub fn get(&self, idx: usize) -> &[u8][src]

get the trust anchor at the specified index

Trait Implementations

impl Default for TrustAnchor[src]

Auto Trait Implementations

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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,