Expand description
A library to extend serde serializers and deserializers with the ability to read / write different file formats from / to files.
Enums§
- Error
- Error type for de-/serialization operations from/to files.
Traits§
- From
File - Makes an object capable of reading itself from a file of a specified format.
- From
Json - Allow deserialization from JSON.
- From
Toml - Allow deserialization from TOML.
- FromXml
- Allow deserialization from XML.
- From
Yaml - Allow deserialization from YAML.
- ToFile
- Makes an object capable of writing itself to a file of a specified format.
- ToJson
- Allow serialization to JSON.
- ToToml
- Allow serialization to TOML.
- ToXml
- Allow serialization to XML.
- ToYaml
- Allow serialization to YAML.
Type Aliases§
- Result
- Result type for this crate.