pub trait ColumnIndex: Copy + Debug { fn index(self, statement: &Statement) -> Result<usize>; }
A type suitable for indexing columns in a prepared statement.
Identify the ordinal position.
The first column has index 0.