#[repr(u16)]
pub enum ErrorFlags {
    ExtraOptRr,
    UnknownOpcode,
    UnknownRcode,
    UnknownRclass,
    UnknownRtype,
    EdnsParseFail,
    DnsLabelExceedsMaxLen,
    DnsNameExceedsMaxLen,
    DnsNameInvalidCompression,
}
Expand description

Error flags raised while parsing DNS - to be used in the returned Message

Variants

ExtraOptRr

more than one pseudo-RR exists - EDNS specs limit OPT RRs to <=1

UnknownOpcode

invalid opcode

UnknownRcode

invalid response code

UnknownRclass

invalid record class

UnknownRtype

invalid record type

EdnsParseFail

an option code used in a pseudo-RR is invalid

DnsLabelExceedsMaxLen

some label exceeds the maximum length of 63

DnsNameExceedsMaxLen

name len > 255 - name will be truncated to max_domain_len

DnsNameInvalidCompression

a ptr either points to an invalid location or is self-referential

Trait Implementations

Formats the value using the given formatter.

The resulting type after applying the & operator.

Performs the & operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the ^ operator.

Performs the ^ operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Associated primitive numeric type

A list of all flag variants in the enum

Numeric representation of the variant

Flag value when no variants are set

Flag value when all variants are set

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

The resulting type after applying the ! operator.

Performs the unary ! operation. Read more

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

This method tests for !=.

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.