[−][src]Trait rbatis_core::query::TryMapRow
Associated Types
Loading content...Required methods
fn try_map_row(&mut self, row: <DB as HasRow<'_>>::Row) -> Result<Self::Output>
Implementors
impl<O: Unpin, F> TryMapRow<MySql> for F where
F: for<'c> FnMut(MySqlRow<'c>) -> Result<O>, [src]
F: for<'c> FnMut(MySqlRow<'c>) -> Result<O>,
type Output = O
fn try_map_row(&mut self, row: MySqlRow<'_>) -> Result<O>[src]
impl<O: Unpin, F> TryMapRow<Postgres> for F where
F: for<'c> FnMut(PgRow<'c>) -> Result<O>, [src]
F: for<'c> FnMut(PgRow<'c>) -> Result<O>,
type Output = O
fn try_map_row(&mut self, row: PgRow<'_>) -> Result<O>[src]
impl<O: Unpin, F> TryMapRow<Sqlite> for F where
F: for<'c> FnMut(SqliteRow<'c>) -> Result<O>, [src]
F: for<'c> FnMut(SqliteRow<'c>) -> Result<O>,