Expand description
Deserialization.
Structs§
- Deserializer
- A Serde
Deserializer of CBOR data. - IoRead
- CBOR input source that reads from a std::io input stream.
- MutSlice
Read - A CBOR input source that reads from a slice of bytes, and can move data around internally to reassemble indefinite strings without the need of an allocated scratch buffer.
- Slice
Read - A CBOR input source that reads from a slice of bytes.
- Slice
Read Fixed - A CBOR input source that reads from a slice of bytes using a fixed size scratch buffer.
- Stream
Deserializer - Iterator that deserializes a stream into multiple CBOR values.
Traits§
- Read
- Trait used by the deserializer for iterating over input.
Functions§
- from_
mut_ slice - Decode a value from CBOR data in a mutable slice.
- from_
reader - Decodes a value from CBOR data in a reader.
- from_
slice - Decodes a value from CBOR data in a slice.
- from_
slice_ with_ scratch - Decode a value from CBOR data using a scratch buffer.