Trait sqlite3::RowIndex [] [src]

pub trait RowIndex {
    fn idx(&self, row: &mut ResultRow) -> Option<ColIx>;
}

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

inspired by sfackler's RowIndex

Required Methods

Try to convert self to an index into a row.

Implementors