pub trait SqlRender {
// Required methods
fn select_sql(&self) -> Result<String, Error>;
fn scoped_select_sql(&self) -> Result<String, Error>;
fn insert_sql(&self) -> Result<String, Error>;
fn update_sql(&self) -> Result<String, Error>;
fn delete_sql(&self) -> Result<String, Error>;
fn soft_delete_sql(&self) -> Result<String, Error>;
fn ddl_sql(&self) -> Result<String, Error>;
fn table_name(&self) -> &'static str;
}Expand description
#[derive(SqlRender)] generates impls for this trait.