[][src]Struct trust_dns_client::rr::RrKey

pub struct RrKey {
    pub name: LowerName,
    pub record_type: RecordType,
}

Accessor key for RRSets in the Authority.

Fields

name: LowerName

Matches the name in the Record of this key

record_type: RecordType

Matches the type of the Record of this key

Implementations

impl RrKey[src]

pub fn new(name: LowerName, record_type: RecordType) -> RrKey[src]

Creates a new key to access the Authority.

Arguments

  • name - domain name to lookup.
  • record_type - the RecordType to lookup.

Return value

A new key to access the Authorities. TODO: make all cloned params pass by value.

pub fn name(&self) -> &LowerName[src]

Returns the name of the key

Trait Implementations

impl Clone for RrKey[src]

impl Debug for RrKey[src]

impl Eq for RrKey[src]

impl Hash for RrKey[src]

impl Ord for RrKey[src]

impl PartialEq<RrKey> for RrKey[src]

impl PartialOrd<RrKey> for RrKey[src]

impl StructuralEq for RrKey[src]

impl StructuralPartialEq for RrKey[src]

Auto Trait Implementations

impl RefUnwindSafe for RrKey

impl Send for RrKey

impl Sync for RrKey

impl Unpin for RrKey

impl UnwindSafe for RrKey

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,