Enum trust_dns::rr::rdata::opt::EdnsOption [] [src]

pub enum EdnsOption {
    DAU(SupportedAlgorithms),
    DHU(SupportedAlgorithms),
    N3U(SupportedAlgorithms),
    Unknown(u16Vec<u8>),
}

options used to pass information about capabilities between client and server

note: Not all EdnsOptions are supported at this time.

http://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-13

Variants

Unknown, used to deal with unknown or unsupported codes

Methods

impl EdnsOption
[src]

Trait Implementations

impl Debug for EdnsOption
[src]

Formats the value using the given formatter.

impl PartialOrd for EdnsOption
[src]

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

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

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

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

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

impl PartialEq for EdnsOption
[src]

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

This method tests for !=.

impl Eq for EdnsOption
[src]

impl Clone for EdnsOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for EdnsOption
[src]

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

Feeds a slice of this type into the state provided.

impl<'a> From<(EdnsCode, &'a [u8])> for EdnsOption
[src]

only the supported extensions are listed right now.

Performs the conversion.