Trait StatementBuilder
pub trait StatementBuilder: Sync + Clone {
// Required methods
fn build(&self, db_backend: &DbBackend) -> Statement;
fn overwrite_table_schema(&mut self, schema: &str) -> &mut Self;
}Expand description
Any type that can build a Statement
Required Methods§
fn overwrite_table_schema(&mut self, schema: &str) -> &mut Self
fn overwrite_table_schema(&mut self, schema: &str) -> &mut Self
Override table name if database schema is set (MSSQL only)
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.