tablers/
lib.rs

1//! Facilities to print data as tables.
2//! Currently this only works by printing to pdf. Which is done in lib.rs
3//! This will be extended and allow printing to csv and perhaps other formats.
4//!
5//!
6
7// @TODO: Move PDF facilities into its own module.
8
9mod cell;
10mod error;
11mod row;
12mod row_style;
13mod table;
14mod to_cell;
15
16pub mod pdf;
17
18pub use crate::{
19    cell::Cell, error::Error, row::Row, row_style::RowStyle, table::Table, to_cell::ToCell,
20};