pub trait BindIndex: Sealed {
// Required method
fn idx(&self, stmt: &Statement<'_>) -> Result<usize>;
}Expand description
A trait implemented by types that can index into parameters of a statement.
It is only implemented for usize and &str and &CStr.