QuotedBuilder

Trait QuotedBuilder 

Source
pub trait QuotedBuilder {
    // Required method
    fn quote(&self) -> Quote;

    // Provided method
    fn prepare_iden(&self, iden: &DynIden, sql: &mut impl SqlWriter) { ... }
}

Required Methods§

Source

fn quote(&self) -> Quote

The type of quote the builder uses.

Provided Methods§

Source

fn prepare_iden(&self, iden: &DynIden, sql: &mut impl SqlWriter)

To prepare iden and write to SQL.

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.

Implementors§