pub trait TemplateRecord: Sync {
    // Required methods
    fn get_sql(&self, page: Option<&Pagination>) -> String;
    fn get_count_sql(&self) -> CountSql;
    fn get_variables(&self) -> Vec<String>;
    fn any_arguments(&self) -> AnyArguments<'_>;
}

Required Methods§

source

fn get_sql(&self, page: Option<&Pagination>) -> String

source

fn get_count_sql(&self) -> CountSql

source

fn get_variables(&self) -> Vec<String>

source

fn any_arguments(&self) -> AnyArguments<'_>

Implementors§