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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl<O, F> MapRow<Any> for F where
    F: FnMut(AnyRow) -> O,
    O: Unpin
[src]

type Output = O

impl<O, F> MapRow<Mssql> for F where
    F: FnMut(MssqlRow) -> O,
    O: Unpin
[src]

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

Loading content...