Trait RowIndex

Source
pub trait RowIndex: Sealed { }
Expand description

A trait implemented by types that can index into a row.

Only the crate itself implements this.

Implementations on Foreign Types§

Source§

impl RowIndex for str

Allows indexing into a row using a column name.

Source§

impl RowIndex for usize

Allows indexing into a row using a column index.

Source§

impl<'a, T> RowIndex for &'a T
where T: RowIndex + ?Sized,

Implementors§