#[non_exhaustive]
pub enum DecodeError {
Show 16 variants UnexpectedEnd, LimitExceeded, InvalidIntegerType { expected: IntegerType, found: IntegerType, }, NonZeroTypeIsZero { non_zero_type: IntegerType, }, UnexpectedVariant { type_name: &'static str, allowed: AllowedEnumVariants, found: u32, }, Utf8(Utf8Error), InvalidCharEncoding([u8; 4]), InvalidBooleanValue(u8), ArrayLengthMismatch { required: usize, found: usize, }, OutsideUsizeRange(u64), EmptyEnum { type_name: &'static str, }, InvalidDuration { secs: u64, nanos: u32, }, InvalidSystemTime { duration: Duration, }, CStringNulError { inner: NulError, }, OtherString(String), Serde(DecodeError),
}
Expand description

Errors that can be encountered by decoding a type

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.

UnexpectedEnd

The reader reached its end but more bytes were expected.

LimitExceeded

The given configuration limit was exceeded

InvalidIntegerType

Fields

expected: IntegerType

The type that was being read from the reader

found: IntegerType

The type that was encoded in the data

Invalid type was found. The decoder tried to read type expected, but found type found instead.

NonZeroTypeIsZero

Fields

non_zero_type: IntegerType

The type that was being read from the reader

The decoder tried to decode any of the NonZero* types but the value is zero

UnexpectedVariant

Fields

type_name: &'static str

The type name that was being decoded.

allowed: AllowedEnumVariants

The variants that are allowed

found: u32

The index of the enum that the decoder encountered

Invalid enum variant was found. The decoder tried to decode variant index found, but the variant index should be between min and max.

Utf8(Utf8Error)

The decoder tried to decode a str, but an utf8 error was encountered.

InvalidCharEncoding([u8; 4])

The decoder tried to decode a char and failed. The given buffer contains the bytes that are read at the moment of failure.

InvalidBooleanValue(u8)

The decoder tried to decode a bool and failed. The given value is what is actually read.

ArrayLengthMismatch

Fields

required: usize

The length of the array required by the rust type.

found: usize

The length of the array found in the binary format.

The decoder tried to decode an array of length required, but the binary data contained an array of length found.

OutsideUsizeRange(u64)

The encoded value is outside of the range of the target usize type.

This can happen if an usize was encoded on an architecture with a larger usize type and then decoded on an architecture with a smaller one. For example going from a 64 bit architecture to a 32 or 16 bit one may cause this error.

EmptyEnum

Fields

type_name: &'static str

The type that was being decoded

Tried to decode an enum with no variants

InvalidDuration

Fields

secs: u64

The number of seconds in the duration.

nanos: u32

The number of nanoseconds in the duration, which when converted to seconds and added to secs, overflows a u64.

The decoder tried to decode a Duration and overflowed the number of seconds.

InvalidSystemTime

Fields

duration: Duration

The duration which could not have been added to UNIX_EPOCH

The decoder tried to decode a SystemTime and overflowed

CStringNulError

Fields

inner: NulError

The inner exception

The decoder tried to decode a CString, but the incoming data contained a 0 byte

OtherString(String)

An uncommon error occurred, see the inner text for more information

Serde(DecodeError)

A serde-specific error that occurred while decoding.

Trait Implementations

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

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

Performs the conversion.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.