Enum postcard::Error[][src]

pub enum Error {
Show 14 variants WontImplement, NotYetImplemented, SerializeBufferFull, SerializeSeqLengthUnknown, DeserializeUnexpectedEnd, DeserializeBadVarint, DeserializeBadBool, DeserializeBadChar, DeserializeBadUtf8, DeserializeBadOption, DeserializeBadEnum, DeserializeBadEncoding, SerdeSerCustom, SerdeDeCustom,
}
Expand description

This is the error type used by Postcard

Variants

WontImplement

This is a feature that PostCard will never implement

NotYetImplemented

This is a feature that Postcard intends to support, but does not yet

SerializeBufferFull

The serialize buffer is full

SerializeSeqLengthUnknown

The length of a sequence must be known

DeserializeUnexpectedEnd

Hit the end of buffer, expected more data

DeserializeBadVarint

Found a varint that didn’t terminate. Is the usize too big for this platform?

DeserializeBadBool

Found a bool that wasn’t 0 or 1

DeserializeBadChar

Found an invalid unicode char

DeserializeBadUtf8

Tried to parse invalid utf-8

DeserializeBadOption

Found an Option discriminant that wasn’t 0 or 1

DeserializeBadEnum

Found an enum discriminant that was > u32::max_value()

DeserializeBadEncoding

The original data was not well encoded

SerdeSerCustom

Serde Serialization Error

SerdeDeCustom

Serde Deserialization Error

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

The lower-level source of this error, if any. Read more

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

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

Raised when there is general error when deserializing a type. 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 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 struct type received more than one of the same field. Read more

Writes the defmt representation of self to fmt.

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

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.