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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

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

type Output = O

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

type Output = O

Loading content...