pub trait Bindable {
// Required method
fn bind(self, _: &mut Statement<'_>) -> Result<()>;
}Expand description
A type suitable for binding to a prepared statement.
pub trait Bindable {
// Required method
fn bind(self, _: &mut Statement<'_>) -> Result<()>;
}A type suitable for binding to a prepared statement.