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.
pub trait BindableWithIndex {
fn bind<T: ParameterIndex>(self, _: &mut Statement, _: T) -> Result<()>;
}
A type suitable for binding to a prepared statement given a parameter index.