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

pub trait TryMapRow<DB>: Send 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: Send + FnMut(AnyRow) -> Result<O, Error>,
    O: Unpin
[src]

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

Loading content...