pub trait Column<T> {
// Required methods
fn width(&self) -> u16;
fn render(&self, item: &T) -> (String, Style);
// Provided methods
fn id(&self) -> &'static str { ... }
fn default_name(&self) -> &'static str { ... }
fn name(&self) -> &str { ... }
}