Enum cbor_smol::error::Error[][src]

#[repr(u8)]
pub enum Error {
Show variants WontImplement, NotYetImplemented, SerializeBufferFull(usize), DeserializeUnexpectedEnd, DeserializeBadBool, DeserializeBadUtf8, DeserializeBadEnum, DeserializeBadMajor, DeserializeBadI8, DeserializeBadI16, DeserializeBadI32, DeserializeBadU8, DeserializeBadU16, DeserializeBadU32, DeserializeExpectedNull, InexistentSliceToArrayError, DeserializeNonMinimal, SerdeSerCustom, SerdeDeCustom, SerdeMissingField,
}
Expand description

This is the error type used by cbor-smol

Variants

WontImplement

This is a feature that cbor-smol will never implement

NotYetImplemented

This is a feature that cbor-smol intends to support, but does not yet

SerializeBufferFull(usize)

The serialize buffer is full

DeserializeUnexpectedEnd

Hit the end of buffer, expected more data

DeserializeBadBool

Found a bool that wasn’t 0xf4 or 0xf5

DeserializeBadUtf8

Tried to parse invalid utf-8

DeserializeBadEnum

Could not parse an enum

DeserializeBadMajor

Expected a different major type

DeserializeBadI8

Expected a i8, was too large

DeserializeBadI16

Expected a i16, was too large

DeserializeBadI32

Expected a i32, was too large

DeserializeBadU8

Expected a u8

DeserializeBadU16

Expected a u16

DeserializeBadU32

Expected a u32

DeserializeExpectedNull

Expected a NULL marker

InexistentSliceToArrayError

Inexistent slice-to-array cast error. Used here to avoid calling unwrap.

DeserializeNonMinimal

Value may be valid, but not encoded in minimal way

SerdeSerCustom

Serde Serialization Error

SerdeDeCustom

Serde Deserialization Error

SerdeMissingField

Serde Missing required value

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

Formats the value using the given formatter. Read more

Used when a Serialize implementation encounters any error while serializing a type. Read more

The underlying cause of this error, if any.

Raised when there is general error when deserializing a type. Read more

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input. Read more

Raised when a Deserialize receives a type different from what it was expecting. Read more

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more

Raised when a Deserialize enum type received a variant with an unrecognized name. Read more

Raised when a Deserialize struct type received a field with an unrecognized name. Read more

Raised when a Deserialize struct type received more than one of the same field. 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.

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.