pub trait RowIndex: Debug { // Required method fn index(self, row: &Row) -> usize; }
A type suitable for indexing columns in a row.
Identify the ordinal position.
The first column has index 0.