pub trait FromRow: TryFrom<Row, Error = Error> { }
A trait signaling that a struct may be parsed from a Postgres Row.
This being a new trait allows the exposure of a derive macro for it.