pub trait SqlBuilder {
// Required method
fn build_sql(&self) -> SqlFragment;
}Expand description
Trait for types that can be converted to SQL fragments.
Required Methods§
Sourcefn build_sql(&self) -> SqlFragment
fn build_sql(&self) -> SqlFragment
Build the SQL fragment for this type.