pub trait InsertFlavoredStatement {
// Required method
fn insert_stmt<C, R>(&self, conn: &C) -> Result<String>
where C: Connection<R>,
R: Row;
}
Required Methods§
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.