Trait InsertFlavoredStatement

Source
pub trait InsertFlavoredStatement {
    // Required method
    fn insert_stmt<C, R>(&self, conn: &C) -> Result<String>
       where C: Connection<R>,
             R: Row;
}

Required Methods§

Source

fn insert_stmt<C, R>(&self, conn: &C) -> Result<String>
where C: Connection<R>, R: Row,

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§