Module sqlite_collections::serializer
source · Structs
- A Direct serializer, just serializing and deserializing 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. There are unit tests for exactly this use-case.