Trait FromRow
sqlx_core::row
pub trait FromRow<'c, R> where Self: Sized, R: Row<'c>, { fn from_row(row: R) -> Result<Self>; }
A record that can be built from a row returned from by the database.
fn from_row(row: R) -> Result<Self>