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, Ipv4Addr can be directly stored and loaded as a SQLite INTEGER using the From Trait. There are unit tests for exactly this use-case.