[][src]Trait sqlx_core::query::TryMapRow

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

Associated Types

Loading content...

Required methods

pub fn try_map_row(&mut self, row: DB::Row) -> Result<Self::Output, Error>[src]

Loading content...

Implementors

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

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

type Output = O

Loading content...