Expand description
A formatted and aligned table printer written in rust
Modules§
- color
- Terminal color definitions
- csv
- CSV impl and reexported types
- format
- Define table formatting utilities
Macros§
- cell
- This macro simplifies
Cell
creation - ptable
- Create a table with
table!
macro, print it to standard output, then return this table for future usage. - row
- This macro simplifies
Row
creation - table
- Create a table filled with some values
Structs§
- Cell
- Represent a table cell containing a string.
- Column
Iter - Iterator over immutable cells in a column
- Column
Iter Mut - Iterator over mutable cells in a column
- Row
- Represent a table row made of cells
- Table
- An owned printable table
- Table
Slice - A borrowed immutable
Table
slice ATableSlice
is obtained by slicing aTable
with theSlice::slice
method.
Enums§
- Attr
- Terminal attributes for use with term.attr().
Traits§
- Slice
- Trait implemented by types which can be sliced