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

pub enum EdnsOption {
    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]

Returns the length in bytes of the EdnsOption

Returns true if the length in bytes of the EdnsOption is 0

Trait Implementations

impl Debug for EdnsOption
[src]

Formats the value using the given formatter. Read more

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 given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl BinEncodable for EdnsOption
[src]

Write the type to the stream

Returns the object in binary form

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

only the supported extensions are listed right now.

Performs the conversion.

impl<'a> From<&'a EdnsOption> for Vec<u8>
[src]

Performs the conversion.

impl<'a> From<&'a EdnsOption> for EdnsCode
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for EdnsOption

impl Sync for EdnsOption