pub trait Decode: Sized { fn decode(value: &DbValue) -> Result<Self, Error>; }
A type that can be decoded from the database.
Decode a new value of this type using a DbValue.
DbValue