Trait sqlite::RowIndex

source ·
pub trait RowIndex: Debug {
    fn index(self, row: &Row) -> usize;
}
Expand description

A type suitable for indexing columns in a row.

Required Methods

Identify the ordinal position.

The first column has index 0.

Implementations on Foreign Types

Implementors