pub struct PgRow { /* private fields */ }
Available on crate feature
postgres
only.Expand description
Implementation of Row
for PostgreSQL.
Trait Implementations§
source§impl ColumnIndex<PgRow> for &str
impl ColumnIndex<PgRow> for &str
source§fn index(&self, row: &PgRow) -> Result<usize, Error>
fn index(&self, row: &PgRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.source§impl ColumnIndex<PgRow> for usize
impl ColumnIndex<PgRow> for usize
source§fn index(&self, row: &PgRow) -> Result<usize, Error>
fn index(&self, row: &PgRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement,
ColumnIndexOutOfBounds
, or,
ColumnNotFound
.source§impl Row for PgRow
impl Row for PgRow
type Database = Postgres
source§fn try_get_raw<I>(&self, index: I) -> Result<PgValueRef<'_>, Error>where
I: ColumnIndex<PgRow>,
fn try_get_raw<I>(&self, index: I) -> Result<PgValueRef<'_>, Error>where I: ColumnIndex<PgRow>,
Index into the database row and decode a single value. Read more
source§fn column<I>(&self, index: I) -> &<Self::Database as Database>::Columnwhere
I: ColumnIndex<Self>,
fn column<I>(&self, index: I) -> &<Self::Database as Database>::Columnwhere I: ColumnIndex<Self>,
Gets the column information at
index
. Read moresource§fn try_column<I>(
&self,
index: I
) -> Result<&<Self::Database as Database>::Column, Error>where
I: ColumnIndex<Self>,
fn try_column<I>( &self, index: I ) -> Result<&<Self::Database as Database>::Column, Error>where I: ColumnIndex<Self>,
Gets the column information at
index
or None
if out of bounds.source§fn get<'r, T, I>(&'r self, index: I) -> Twhere
I: ColumnIndex<Self>,
T: Decode<'r, Self::Database> + Type<Self::Database>,
fn get<'r, T, I>(&'r self, index: I) -> Twhere I: ColumnIndex<Self>, T: Decode<'r, Self::Database> + Type<Self::Database>,
Index into the database row and decode a single value. Read more
source§fn get_unchecked<'r, T, I>(&'r self, index: I) -> Twhere
I: ColumnIndex<Self>,
T: Decode<'r, Self::Database>,
fn get_unchecked<'r, T, I>(&'r self, index: I) -> Twhere I: ColumnIndex<Self>, T: Decode<'r, Self::Database>,
Index into the database row and decode a single value. Read more
source§fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>where
I: ColumnIndex<Self>,
T: Decode<'r, Self::Database> + Type<Self::Database>,
fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>where I: ColumnIndex<Self>, T: Decode<'r, Self::Database> + Type<Self::Database>,
Index into the database row and decode a single value. Read more
source§fn try_get_unchecked<'r, T, I>(&'r self, index: I) -> Result<T, Error>where
I: ColumnIndex<Self>,
T: Decode<'r, Self::Database>,
fn try_get_unchecked<'r, T, I>(&'r self, index: I) -> Result<T, Error>where I: ColumnIndex<Self>, T: Decode<'r, Self::Database>,
Index into the database row and decode a single value. Read more