[][src]Trait sqlx::query::TryMapRow

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

Loading content...