pub trait TableRow { // Required method fn to_row(&self) -> Vec<String>; }
Trait for types that can be displayed as a table row.