pub trait SqlWrite {
// Required methods
fn push(&mut self, s: &str);
fn bind<T>(&mut self, value: T)
where T: Encode<'static, Postgres> + Send + 'static + Type<Postgres>;
}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.