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

A type suitable for binding to a prepared statement.

Required Methods

Bind to a parameter.

The leftmost parameter has the index 1.

Implementations on Foreign Types

Implementors