Enum bincode::internal::ErrorKind [] [src]

pub enum ErrorKind {
    Io(Error),
    InvalidUtf8Encoding(Utf8Error),
    InvalidBoolEncoding(u8),
    InvalidCharEncoding,
    InvalidTagEncoding(usize),
    DeserializeAnyNotSupported,
    SizeLimit,
    SequenceMustHaveLength,
    Custom(String),
}

The kind of error that can be produced during a serialization or deserialization.

Variants

If the error stems from the reader/writer that is being used during (de)serialization, that error will be stored and returned here.

Returned if the deserializer attempts to deserialize a string that is not valid utf8

Returned if the deserializer attempts to deserialize a bool that was not encoded as either a 1 or a 0

Returned if the deserializer attempts to deserialize a char that is not in the correct format.

Returned if the deserializer attempts to deserialize the tag of an enum that is not in the expected ranges

Serde has a deserialize_any method that lets the format hint to the object which route to take in deserializing.

If (de)serializing a message takes more than the provided size limit, this error is returned.

Bincode can not encode sequences of unknown length (like iterators).

A custom error message from Serde.

Trait Implementations

impl Debug for ErrorKind
[src]

[src]

Formats the value using the given formatter.

impl StdError for ErrorKind
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for ErrorKind
[src]

[src]

Formats the value using the given formatter. Read more