[][src]Trait sqlx::row::RowIndex

pub trait RowIndex<R> where
    R: Row + ?Sized
{ fn try_get<T>(&self, row: &R) -> Result<T, Error>
    where
        T: Decode<<R as Row>::Database>,
        <R as Row>::Database: HasSqlType<T>
; }

Required methods

fn try_get<T>(&self, row: &R) -> Result<T, Error> where
    T: Decode<<R as Row>::Database>,
    <R as Row>::Database: HasSqlType<T>, 

Loading content...

Implementations on Foreign Types

impl<'_> RowIndex<MySqlRow> for &'_ str[src]

impl RowIndex<MySqlRow> for usize[src]

impl RowIndex<PgRow> for usize[src]

impl<'_> RowIndex<PgRow> for &'_ str[src]

Loading content...

Implementors

Loading content...