Module serde_cbor::de[][src]

Expand description

Deserialization.

Structs

A Serde Deserializer of CBOR data.

CBOR input source that reads from a std::io input stream.

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.

A CBOR input source that reads from a slice of bytes.

A CBOR input source that reads from a slice of bytes using a fixed size scratch buffer.

Iterator that deserializes a stream into multiple CBOR values.

Traits

Trait used by the deserializer for iterating over input.

Functions

Decode a value from CBOR data in a mutable slice.

Decodes a value from CBOR data in a reader.

Decodes a value from CBOR data in a slice.

Decode a value from CBOR data using a scratch buffer.