Enum embedded_nal_minimal_coaptcpserver::Error[][src]

#[non_exhaustive]
pub enum Error<E> {
    Network(E),
    LongMessage,
    UnanticipatedResponse,
    BadCSM,
    MissingCSM,
    UnrecognizedMessage,
    SendBufferOverflow,
}
Expand description

Error returned by operations on a CoAP-over-TCP connection

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.
Network(E)

A network operation returned an error.

Tuple Fields of Network

0: E
LongMessage

A message the peer sent exceeds the Max-Message-Size that was advertised.

UnanticipatedResponse

The peer sent a response even though we don’t send requests out of principle.

BadCSM

The CSM contained unprocessable options.

MissingCSM

The peer sent a request before sending a CSM.

UnrecognizedMessage

A message of an unrecognized class was received.

SendBufferOverflow

While processing a message, the send buffer got full, and this implementation can’t handle that condition. (Handling it would require significantly growing the per-connection state, see comment around this error’s creation).

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

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

Performs the conversion.

Performs the conversion.

Performs the conversion.

Should always be Self

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.