Enum trust_dns_proto::rr::rdata::opt::EdnsOption
source · Expand description
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 (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
source§impl BinEncodable for EdnsOption
impl BinEncodable for EdnsOption
source§fn emit(&self, encoder: &mut BinEncoder<'_>) -> ProtoResult<()>
fn emit(&self, encoder: &mut BinEncoder<'_>) -> ProtoResult<()>
Write the type to the stream
source§impl Clone for EdnsOption
impl Clone for EdnsOption
source§fn clone(&self) -> EdnsOption
fn clone(&self) -> EdnsOption
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EdnsOption
impl Debug for EdnsOption
source§impl<'a> From<&'a EdnsOption> for EdnsCode
impl<'a> From<&'a EdnsOption> for EdnsCode
source§fn from(value: &'a EdnsOption) -> Self
fn from(value: &'a EdnsOption) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a EdnsOption> for Vec<u8>
impl<'a> From<&'a EdnsOption> for Vec<u8>
source§fn from(value: &'a EdnsOption) -> Self
fn from(value: &'a EdnsOption) -> Self
Converts to this type from the input type.
source§impl<'a> From<(EdnsCode, &'a [u8])> for EdnsOption
impl<'a> From<(EdnsCode, &'a [u8])> for EdnsOption
only the supported extensions are listed right now.
source§impl Hash for EdnsOption
impl Hash for EdnsOption
source§impl PartialEq<EdnsOption> for EdnsOption
impl PartialEq<EdnsOption> for EdnsOption
source§fn eq(&self, other: &EdnsOption) -> bool
fn eq(&self, other: &EdnsOption) -> bool
source§impl PartialOrd<EdnsOption> for EdnsOption
impl PartialOrd<EdnsOption> for EdnsOption
source§fn partial_cmp(&self, other: &EdnsOption) -> Option<Ordering>
fn partial_cmp(&self, other: &EdnsOption) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more