tabled 0.20.0

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
11
12
13
14
15
//! The module contains a variety of configurations of table, which often
//! changes not a single setting.
//! As such they are making relatively big changes to the configuration.

mod border_correction;
mod colorization;
mod column_names;
mod layout;
mod theme;

pub use border_correction::BorderCorrection;
pub use colorization::{Colorization, ExactColorization};
pub use column_names::ColumnNames;
pub use layout::Layout;
pub use theme::Theme;