pub trait FromRow { // Required method fn from_row(row: &Row<'_>) -> Result<Self, Error> where Self: Sized; }