pub trait OtherSqlGenerator {
// Required methods
fn output_other_sql_top(&self);
fn output_other_sql_bottom(&self);
fn output_other_sql(
&self,
writer: &mut SqlWriter,
statement_separator: &str,
sql: &str,
);
}Required Methods§
fn output_other_sql_top(&self)
fn output_other_sql_bottom(&self)
fn output_other_sql( &self, writer: &mut SqlWriter, statement_separator: &str, sql: &str, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".