Trait sqlx_core::column::ColumnIndex [−][src]
A type that can be used to index into a Row or Statement.
The get and try_get methods of Row accept any type that implements ColumnIndex.
This trait is implemented for strings which are used to look up a column by name, and for
usize which is used as a positional index into the row.
This trait is sealed and cannot be implemented for types outside of SQLx.
Required methods
fn index(&self, container: &T) -> Result<usize, Error>[src]
Returns a valid positional index into the row or statement, ColumnIndexOutOfBounds, or,
ColumnNotFound.
Implementations on Foreign Types
impl<T: ?Sized, I: ColumnIndex<T> + ?Sized> ColumnIndex<T> for &I[src]
impl<'i> ColumnIndex<AnyRow> for &'i str where
&'i str: AnyColumnIndex, [src]
&'i str: AnyColumnIndex,
impl<'i> ColumnIndex<AnyStatement<'_>> for &'i str where
&'i str: AnyColumnIndex, [src]
&'i str: AnyColumnIndex,