Trait sqlmo::ToSql

source ·
pub trait ToSql {
    // Required method
    fn write_sql(&self, buf: &mut String, dialect: Dialect);

    // Provided method
    fn to_sql(&self, dialect: Dialect) -> String { ... }
}

Required Methods§

source

fn write_sql(&self, buf: &mut String, dialect: Dialect)

Provided Methods§

source

fn to_sql(&self, dialect: Dialect) -> String

Implementors§