Expand description
Decoding primitives for MessagePack.
Structs§
- Array
Decoder - Decode a MessagePack array of
V
intoArray
collecting iterator. - BinOwned
Decoder alloc
- Owned
Vec<u8>
decoder for MessagePack bin8/16/32. - MapDecoder
- Decode a MessagePack map of
K -> V
intoMap
collecting iterator. - Nbyte
Reader - Helper to read a fixed number of big‑endian bytes and return them as
usize
. - NilDecoder
- Decode the MessagePack
nil
value. - Reference
Decoder - Decode a MessagePack binary and return a
Reference
to its bytes - Reference
StrDecoder - Decode a MessagePack string and return a ReferenceStr
Enums§
- Error
- MessagePack decode error
- Reference
Str - Borrowed or copied UTF‑8 string reference
Traits§
- Decode
- Decode a value from MessagePack.
- Decode
Borrowed - Decode a value whose borrows are bounded by
'de
.