pub trait Tabulator {
// Required methods
fn setup(&self, context: &Context) -> Result<(), IxaError>;
fn get_typelist(&self) -> Vec<TypeId>;
fn get_columns(&self) -> Vec<String>;
}
pub trait Tabulator {
// Required methods
fn setup(&self, context: &Context) -> Result<(), IxaError>;
fn get_typelist(&self) -> Vec<TypeId>;
fn get_columns(&self) -> Vec<String>;
}