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