[][src]Enum toluol::DnsRcode

pub enum DnsRcode {
    NOERROR,
    FORMERR,
    SERVFAIL,
    NXDOMAIN,
    NOTIMP,
    REFUSED,
    YXDOMAIN,
    YXRRSET,
    NXRRSET,
    NOTAUTH,
    NOTZONE,
    DSOTYPENI,
    BADVERSBADSIG,
    BADKEY,
    BADTIME,
    BADMODE,
    BADNAME,
    BADALG,
    BADTRUNC,
    BADCOOKIE,
}

Represents a DNS RCODE, including those introduced by EDNS. See here for further information.

Variants

NOERROR
FORMERR
SERVFAIL
NXDOMAIN
NOTIMP
REFUSED
YXDOMAIN
YXRRSET
NXRRSET
NOTAUTH
NOTZONE
DSOTYPENI
BADVERSBADSIG
BADKEY
BADTIME
BADMODE
BADNAME
BADALG
BADTRUNC
BADCOOKIE

Implementations

impl DnsRcode[src]

pub fn encode(&self) -> u8[src]

Encodes a DnsRcode as a byte (actually only the lower four bits are used). Note that for RCODEs BADVERSBADSIG and following only the lower four bits are encoded; the upper eight bits need to be encoded in an OPT record in the additional section of the DNS message.

pub fn parse(val: u16) -> Result<DnsRcode>[src]

Parses an encoded DnsRcode from a twelve bit value. If EDNS is used, the upper eight bits are stored in the OPT entry of the additional section and the lower four bits are stored in the DnsHeader. Returns an error if the given value does not represent a valid DNS RCODE.

Trait Implementations

impl Clone for DnsRcode[src]

impl Copy for DnsRcode[src]

impl Debug for DnsRcode[src]

impl Display for DnsRcode[src]

impl PartialEq<DnsRcode> for DnsRcode[src]

impl StructuralPartialEq for DnsRcode[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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