[][src]Trait sqlx_core::query::MapRow

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

Associated Types

Loading content...

Required methods

pub fn map_row(&mut self, row: DB::Row) -> Self::Output[src]

Loading content...

Implementors

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

Loading content...