[][src]Trait sqlx::query::MapRow

pub trait MapRow<DB> where
    DB: Database
{ type Output: Unpin; fn map_row(&mut self, row: <DB as HasRow>::Row) -> Self::Output; }

Associated Types

Loading content...

Required methods

fn map_row(&mut self, row: <DB as HasRow>::Row) -> Self::Output

Loading content...

Implementors

impl<O, F> MapRow<MySql> for F where
    F: for<'c> FnMut(MySqlRow<'c>) -> O,
    O: Unpin
[src]

type Output = O

impl<O, F> MapRow<Postgres> for F where
    F: for<'c> FnMut(PgRow<'c>) -> O,
    O: Unpin
[src]

type Output = O

impl<O, F> MapRow<Sqlite> for F where
    F: for<'c> FnMut(SqliteRow<'c>) -> O,
    O: Unpin
[src]

type Output = O

Loading content...