Trait SqlRule

Source
pub trait SqlRule {
    // Required method
    fn testcc(&self) -> String;

    // Provided methods
    fn make_where(&self, where_sql: &str) -> String { ... }
    fn make_left_insert_where(
        &self,
        insert_sql: &str,
        where_sql: &str,
    ) -> String { ... }
}

Required Methods§

Source

fn testcc(&self) -> String

Provided Methods§

Source

fn make_where(&self, where_sql: &str) -> String

Source

fn make_left_insert_where(&self, insert_sql: &str, where_sql: &str) -> String

Implementations on Foreign Types§

Source§

impl SqlRule for DriverType

Source§

fn testcc(&self) -> String

Implementors§