Trait sqlx::ColumnIndex

source ·
pub trait ColumnIndex<T>: Sealed + Debug
where T: ?Sized,
{ // Required method fn index(&self, container: &T) -> Result<usize, Error>; }
Expand description

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§

source

fn index(&self, container: &T) -> Result<usize, Error>

Returns a valid positional index into the row or statement, ColumnIndexOutOfBounds, or, ColumnNotFound.

Implementations on Foreign Types§

source§

impl ColumnIndex<MySqlRow> for &str

source§

fn index(&self, row: &MySqlRow) -> Result<usize, Error>

source§

impl ColumnIndex<MySqlRow> for usize

source§

fn index(&self, row: &MySqlRow) -> Result<usize, Error>

source§

impl ColumnIndex<MySqlStatement<'_>> for &str

source§

fn index(&self, statement: &MySqlStatement<'_>) -> Result<usize, Error>

source§

impl ColumnIndex<MySqlStatement<'_>> for usize

source§

fn index(&self, statement: &MySqlStatement<'_>) -> Result<usize, Error>

source§

impl<T, I> ColumnIndex<T> for &I
where I: ColumnIndex<T> + ?Sized, T: ?Sized,

source§

fn index(&self, row: &T) -> Result<usize, Error>

Implementors§