Struct sqlx_oldapi::any::AnyRow  
source · pub struct AnyRow { /* private fields */ }Trait Implementations§
source§impl<'i> ColumnIndex<AnyRow> for &'i strwhere
    &'i str: AnyColumnIndex,
 
impl<'i> ColumnIndex<AnyRow> for &'i strwhere &'i str: AnyColumnIndex,
source§fn index(&self, row: &AnyRow) -> Result<usize, Error>
 
fn index(&self, row: &AnyRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement, 
ColumnIndexOutOfBounds, or,
ColumnNotFound.source§impl ColumnIndex<AnyRow> for usize
 
impl ColumnIndex<AnyRow> for usize
source§fn index(&self, row: &AnyRow) -> Result<usize, Error>
 
fn index(&self, row: &AnyRow) -> Result<usize, Error>
Returns a valid positional index into the row or statement, 
ColumnIndexOutOfBounds, or,
ColumnNotFound.source§impl Row for AnyRow
 
impl Row for AnyRow
type Database = Any
source§fn try_get_raw<I>(
    &self,
    index: I
) -> Result<<<AnyRow as Row>::Database as HasValueRef<'_>>::ValueRef, Error>where
    I: ColumnIndex<AnyRow>,
 
fn try_get_raw<I>( &self, index: I ) -> Result<<<AnyRow as Row>::Database as HasValueRef<'_>>::ValueRef, Error>where I: ColumnIndex<AnyRow>,
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<AnyRow>,
    T: Decode<'r, <AnyRow as Row>::Database> + Type<<AnyRow as Row>::Database>,
 
fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>where I: ColumnIndex<AnyRow>, T: Decode<'r, <AnyRow as Row>::Database> + Type<<AnyRow as Row>::Database>,
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_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
Auto Trait Implementations§
impl RefUnwindSafe for AnyRow
impl Send for AnyRow
impl Sync for AnyRow
impl Unpin for AnyRow
impl UnwindSafe for AnyRow
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more