pub type TableRow<T> = Vec<TableCell<T>>;
A table row is a vector of cells (columns).
pub struct TableRow<T> { /* private fields */ }