pub enum DoqErrorCode {
    NoError,
    InternalError,
    ProtocolError,
    RequestCancelled,
    ExcessiveLoad,
    ErrorReserved,
    Unknown(u32),
}
Available on crate features dns-over-quic and tokio-runtime only.
Expand description

DoQ Error Codes, draft-ietf-dprive-dnsoquic, Feb. 28, 2022

 5.3. DoQ Error Codes

The following error codes are defined for use when abruptly terminating streams, aborting reading of streams, or immediately closing connections:

DOQ_NO_ERROR (0x0):
    No error. This is used when the connection or stream needs to be closed, but there is no error to signal.

DOQ_INTERNAL_ERROR (0x1):
    The DoQ implementation encountered an internal error and is incapable of pursuing the transaction or the connection.

DOQ_PROTOCOL_ERROR (0x2):
    The DoQ implementation encountered an protocol error and is forcibly aborting the connection.

DOQ_REQUEST_CANCELLED (0x3):
    A DoQ client uses this to signal that it wants to cancel an outstanding transaction.

DOQ_EXCESSIVE_LOAD (0x4):
    A DoQ implementation uses this to signal when closing a connection due to excessive load.

DOQ_ERROR_RESERVED (0xd098ea5e):
    Alternative error code used for tests.

Variants

NoError

No error. This is used when the connection or stream needs to be closed, but there is no error to signal.

InternalError

The DoQ implementation encountered an internal error and is incapable of pursuing the transaction or the connection.

ProtocolError

The DoQ implementation encountered an protocol error and is forcibly aborting the connection.

RequestCancelled

A DoQ client uses this to signal that it wants to cancel an outstanding transaction.

ExcessiveLoad

A DoQ implementation uses this to signal when closing a connection due to excessive load.

ErrorReserved

Alternative error code used for tests.

Unknown(u32)

Unknown Error code

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Converts to this type from the input type.

Converts to this type from the input type.

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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

Uses borrowed data to replace owned data, usually by cloning. 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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more