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
#![allow(unused_imports)]

#[cfg(feature = "std")]
mod matrix;
#[cfg(feature = "std")]
mod matrix_list;

#[cfg(feature = "std")]
pub use matrix::Matrix;
#[cfg(feature = "std")]
pub use matrix_list::MatrixList;