pub trait TableDef {
// Required methods
fn name(&self) -> &'static str;
fn columns(&self) -> &'static [&'static str];
// Provided methods
fn create_table_stmt(&self) -> String { ... }
fn insert_stmt(&self) -> String { ... }
}