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