SqlWrite

Trait SqlWrite 

Source
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§

Source

fn push(&mut self, s: &str)

Source

fn bind<T>(&mut self, value: T)
where T: Encode<'static, Postgres> + Send + 'static + Type<Postgres>,

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.

Implementors§