pub trait Bindable {
// Required method
fn bind(self, _: &Statement) -> Result<()>;
}Expand description
A type suitable for binding to a prepared statement.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".