1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! Facilities to print data as tables.
//! Currently this only works by printing to pdf. Which is done in lib.rs
//! This will be extended and allow printing to csv and perhaps other formats.
//!
//!

// @TODO: Move PDF facilities into its own module.

mod cell;
mod error;
mod row;
mod row_style;
mod table;
mod to_cell;

pub mod pdf;

pub use crate::{
    cell::Cell, error::Error, row::Row, row_style::RowStyle, table::Table, to_cell::ToCell,
};