Crate tinytable

Source
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)
  • Unicode support
  • Nothing more!

See write_table for examples and usage details.

Enums§

FallibleIteratorTableWriteErrorfallible-iterator
Error type of write_table_fallible.

Functions§

write_table
Render a table.
write_table_falliblefallible-iterator
Render a table from a fallible iterator.
write_table_with_fmt
Render a table using custom formatters.
write_table_with_fmt_falliblefallible-iterator
Render a table from a fallible iterator using custom formatters.