pub trait ParameterIndex: Copy + Debug {
    fn index(self, statement: &Statement) -> Result<usize>;
}
Expand description

A type suitable for indexing parameters in a prepared statement.

Required Methods§

Identify the ordinal position.

The first parameter has index 1.

Implementations on Foreign Types§

Implementors§