Expand description
Utility module to convert data to types and back by specific formats like: JSON, BSON, TOML, YAML, XML.
All types here are lazy and it’s necessary to
use Into
and From
traits to get (convert) the data.
Structs§
- A representation of a Bincode data. Use it as wrapper to set a format you want to use for conversion:
- A representation of a CBOR data. Use it as wrapper to set a format you want to use for conversion:
- A representation of a JSON data. Use it as wrapper to set a format you want to use for conversion:
- A representation of a MessagePack data. Use it as wrapper to set a format you want to use for conversion:
- A representation of an empty data. Nothing stored. Nothing restored.
- A representation of a TOML data. Use it as wrapper to set a format you want to use for conversion:
- A representation of a YAML data. Use it as wrapper to set a format you want to use for conversion:
Enums§
- Represents formatting errors.
Type Aliases§
- A representation of a value which can be stored and restored as a binary.
- A representation of a value which can be stored and restored as a text.