Expand description
A library to create formatted plain-text tables.
See to_grid
(High Level API) or GridBuilder
(Low Level API) for details.
Macros§
- cell
- Create
Cell
via runtime expression interpolation, as informat!
. - cells_f
- Create
Cells
for float numbers via runtime expression interpolation.
Structs§
- Cell
- Implementation of
RawCell
that can specify styles. - Cell
Style - Cell`s style.
- Cells
Formatter - Used to define columns.
- Column
Style - Column’s style.
- Default
Cells Schema CellsSchema
implementation that useCells
.- Grid
Deprecated - A builder used to create plain-text table.
- Grid
Builder - A builder used to create plain-text table.
- RowBuilder
- A builder used to create row of
GridBuilder
.
Enums§
- Horizontal
Alignment - Horizontal alignments for cell’s content.
Traits§
- Cells
- A data structure that can be formatted into cells.
- Cells
Schema - Column definitions.
- Cells
Schema Ext - Extension trait for
CellsSchema
. - RawCell
- A data structure that can be formatted into a cell.
Functions§
- cell
- Create
Cell
fromDisplay
. - cell_by
- Create
Cell
from closure that callstd::write!
macro. - cells_f
- Create
Cells
for float numbers fromDisplay
. - cells_
schema - Create
CellsSchema
from closure. - to_csv
- Generate csv using the columns defined by
Cells
. - to_
csv_ with_ schema - Generate csv using the columns defined by
CellsSchema
. - to_grid
- Generate a table using the columns defined by
Cells
. - to_
grid_ with_ schema - Generate a table using the columns defined by
CellsSchema
.