pub trait SqlRule {
    fn make_where(&self, where_sql: &str) -> String { ... }
    fn make_left_insert_where(
        &self,
        insert_sql: &str,
        where_sql: &str
    ) -> String { ... } }

Provided Methods

Implementors