pub type SimpleTable = Table<()>;Expand description
Simple table without user data (backward compatible)
Aliased Type§
pub struct SimpleTable {
pub rows: Vec<Vec<Vec<Inline>>>,
pub alignments: Vec<Alignment>,
pub user_data: (),
}Fields§
§rows: Vec<Vec<Vec<Inline>>>Each row is a vector of cells; header row is row 0.
alignments: Vec<Alignment>Column alignment; alignments.len() == column_count.
user_data: ()User-defined data associated with this table