Struct trust_dns::authority::RrKey [] [src]

pub struct RrKey {
    // some fields omitted
}

Accessor key for RRSets in the Authority.

Methods

impl RrKey
[src]

fn new(name: &Name, record_type: RecordType) -> RrKey

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.

Trait Implementations

impl Clone for RrKey
[src]

fn clone(&self) -> RrKey

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Hash for RrKey
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Debug for RrKey
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for RrKey
[src]

fn eq(&self, __arg_0: &RrKey) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &RrKey) -> bool

This method tests for !=.

impl Eq for RrKey
[src]

impl PartialOrd for RrKey
[src]

fn partial_cmp(&self, other: &RrKey) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &Rhs) -> bool
1.0.0

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, other: &Rhs) -> bool
1.0.0

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for RrKey
[src]

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more