pub trait TableContainer: Display {
// Required methods
fn table(&self) -> Table;
fn markdown_table(&self) -> Table;
fn html_table(&self) -> HtmlTable;
}
pub trait TableContainer: Display {
// Required methods
fn table(&self) -> Table;
fn markdown_table(&self) -> Table;
fn html_table(&self) -> HtmlTable;
}