pub trait Prepared:
Send
+ Sync
+ Display {
// Required methods
fn bind<V: AsValue>(&mut self, value: V) -> Result<&mut Self>;
fn bind_index<V: AsValue>(
&mut self,
value: V,
index: u64,
) -> Result<&mut Self>;
}Required Methods§
fn bind<V: AsValue>(&mut self, value: V) -> Result<&mut Self>
fn bind_index<V: AsValue>(&mut self, value: V, index: u64) -> Result<&mut Self>
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.