Enum cbor_tools::DecodeError[][src]

pub enum DecodeError {
    End,
    Underrun,
    Utf8Error,
    Undecodable,
    BadSubString,
    Break,
    Indefinite,
    MapPairError,
    UnknownSimple(u8),
}
Expand description

An error that may occur when decoding CBOR Data.

Variants

End

No more CBOR items are available in the input data.

Underrun

Not enough bytes were available to complete decoding.

Utf8Error

A CBOR text string contains invalid UTF-8 data.

Undecodable

The byte sequence cannot be decoded as CBOR data.

BadSubString

Improper nesting of types inside an indefinite text or byte string.

Break

CBOR elements were terminated by a BREAK symbol.

Indefinite

CBOR element was marked as indefinite-length.

MapPairError

A Map didn’t have an even number of members.

UnknownSimple(u8)

Tuple Fields

0: u8

An unknown Simple Value was encountered.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Performs the conversion.

Performs the conversion.

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

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.