pub trait FromPostgresRow { // Required method fn to_document( &self, field_names: Option<Vec<&str>>, ) -> Result<Document, Error>; }