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.