Enum minicbor::decode::Error [−][src]
#[non_exhaustive] pub enum Error { EndOfInput, InvalidChar(u32), Utf8(Utf8Error), Overflow(u64, &'static str), TypeMismatch(u8, &'static str), UnknownVariant(u32), MissingValue(u32, &'static str), Message(&'static str), }
Decoding errors.
Variants (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.
Decoding has (unexpectedly) reached the end of the input slice.
InvalidChar(u32)
Data item to decode is not a valid char
.
Utf8(Utf8Error)
Decoding a string failed because it is invalid UTF-8.
A numeric value exceeds its value range.
An unexpected type was encountered.
UnknownVariant(u32)
An unknown enum variant was encountered.
A value was missing at the specified index.
Message(&'static str)
Generic error message.