Enum rmp::decode::DecodeStringError [−][src]
pub enum DecodeStringError<'a, E: RmpReadErr = Error> {
InvalidMarkerRead(E),
InvalidDataRead(E),
TypeMismatch(Marker),
BufferSizeTooSmall(u32),
InvalidUtf8(&'a [u8], Utf8Error),
}
Variants
InvalidMarkerRead(E)
InvalidDataRead(E)
TypeMismatch(Marker)
Tuple Fields
0: Marker
BufferSizeTooSmall(u32)
Tuple Fields
0: u32
The given buffer is not large enough to accumulate the specified amount of bytes.
InvalidUtf8(&'a [u8], Utf8Error)
Trait Implementations
Performs the conversion.