Module sqlite_collections::format
source · Structs
- A format that uses ToString and FromStr to parse to and from a string representation.
- A plain SQL format, just serializing and deserializing raw sql types directly.
Traits
- 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,
Ipv4Addrcan be directly stored and loaded as a SQLite INTEGER using theFromTrait, andParsecan be used for types that implement Display and FromStr.