Module de

Source
Expand description

Serde deserialization support for CBOR

Enums§

Error
An error occurred during deserialization

Functions§

from_reader
Deserializes as CBOR from a type with impl ciborium_io::Read using a 4KB buffer on the stack.
from_reader_with_buffer
Deserializes as CBOR from a type with impl ciborium_io::Read, using a caller-specific buffer as a temporary scratch space.
from_reader_with_recursion_limit
Deserializes as CBOR from a type with impl ciborium_io::Read, with a specified maximum recursion limit. Inputs that are nested beyond the specified limit will result in Error::RecursionLimitExceeded .