A simple table trait object for Vec<Vec<impl fmt::Display>>
use tabular::Tabular;
fn main() {
let table_data = vec![
vec!["Cat", "Dog", "Elephant"],
vec!["Pidgeon", "Bear", "Wolf"]
];
println!("{}", table_data.to_table());
}> cargo run
Cat Dog Elephant
Pidgeon Bear Wolf