testing_table 0.1.1

An easy to use library for pretty print tables of Rust `struct`s and `enum`s.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Crate provides a convinient functions for work with tables.
//!
//! It was developed as a sub-project of [`tabled`].
//!
//! [`tabled`]: https://github.com/zhiburt/tabled

mod macros;
mod util;

pub use util::{get_char_width, get_line_width, get_string_width, get_text_width};