pub trait BindableWithIndex {
    fn bind<T: ParameterIndex>(self, _: &mut Statement<'_>, _: T) -> Result<()>;
}
Expand description

A type suitable for binding to a prepared statement given a parameter index.

Required Methods

Bind to a parameter.

Implementations on Foreign Types

Implementors