[][src]Trait sqlx::FromRow

pub trait FromRow<R> where
    R: Row
{ fn from_row(row: R) -> Self; }

A record that can be built from a row returned from by the database.

Required methods

fn from_row(row: R) -> Self

Loading content...

Implementors

impl FromRow<MySqlRow> for MySqlRow[src]

impl FromRow<PgRow> for PgRow[src]

Loading content...