[][src]Trait rbatis_core::query::TryMapRow

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

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

type Output = O

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

type Output = O

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

type Output = O

Loading content...