Expand description
A tiny text table drawing library.
Features:
- Small code size (< 250 lines of code, excluding docs and tests)
- Minimal dependencies (not zero, because Unicode is hard)
- Iterator support (you don’t need to collect all the data to display at once, it can be streamed)
- Optional support for the
fallible-iterator
crate
- Optional support for the
- Unicode support
- Nothing more!
See write_table
for examples and usage details.
Enums§
- Fallible
Iterator Table Write Error fallible-iterator
- Error type of
write_table_fallible
.
Functions§
- write_
table - Render a table.
- write_
table_ fallible fallible-iterator
- Render a table from a fallible iterator.
- write_
table_ with_ fmt - Render a table using custom formatters.
- write_
table_ with_ fmt_ fallible fallible-iterator
- Render a table from a fallible iterator using custom formatters.