tabled 0.9.0

An easy to use library for pretty print tables of Rust `struct`s and `enum`s.
1
2
3
4
5
6
7
//! A module which contains a different Views for a [`Table`].
//!
//! [`Table`]: crate::Table

mod expanded_display;

pub use expanded_display::*;