pub trait BindableWithIndex {
// Required method
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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.