Enum rmp::decode::ValueReadError
[−]
[src]
pub enum ValueReadError { InvalidMarkerRead(ReadError), InvalidDataRead(ReadError), TypeMismatch(Marker), }
Represents an error that can occur when attempting to read a MessagePack'ed complex value from the reader.
Variants
InvalidMarkerRead | Failed to read the marker. |
InvalidDataRead | Failed to read the data. |
TypeMismatch | The type decoded isn't match with the expected one. |