Module format

Module format 

Source

Structs§

Parse
A format that uses ToString and FromStr to parse to and from a string representation.
Raw
A plain SQL format, just serializing and deserializing raw sql types directly.

Traits§

Format
The trait that tells collections how to serialize and deserialize their types. Serializers are typically built on Serde, but aren’t required to be. For instance, Ipv4Addr can be directly stored and loaded as a SQLite INTEGER using the From Trait, and Parse can be used for types that implement Display and FromStr.