pub enum DecodeError {
InvalidByte(usize, u8),
InvalidLength,
}
Errors that can occur while decoding.
An invalid byte was found in the input. The offset and offending byte are provided.
The length of the input is invalid.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Formats the value using the given formatter. Read more
The lower-level cause of this error, if any. Read more