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

pub struct TrustAnchor { /* fields omitted */ }

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

Methods

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

impl Send for TrustAnchor

impl Sync for TrustAnchor

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T