Expand description
Generic MessagePack deserialization.
Structs§
- Deserializer
- A Deserializer that reads bytes from a buffer.
- Read
Reader - Owned reader wrapper.
- Read
RefReader - Borrowed reader wrapper.
Enums§
- Error
- Enum representing errors that can occur while decoding MessagePack data.
- Reference
- Unification of both borrowed and non-borrowed reference types.
Traits§
- Read
Slice - Extends the
Read
trait by allowing to read slices directly by borrowing bytes.
Functions§
- from_
read - Deserialize an instance of type
T
from an I/O stream of MessagePack. - from_
slice - Deserialize a temporary scope-bound instance of type
T
from a slice, with zero-copy if possible.