pub trait RdbcRowMapper<T> { // Required method fn map_row(&self, row: &AnyRow) -> T; }
Trait for mapping a database row to a specific type.
Maps a database row to the specified type.