structured/
lib.rs

1pub mod csv;
2pub mod record;
3mod stats;
4mod table;
5
6pub use arrow;
7pub use jiff::civil::DateTime;
8pub use stats::{
9    ColumnStatistics, Description, Element, ElementCount, FloatRange, GroupCount, GroupElement,
10    GroupElementCount, NLargestCount,
11};
12pub use table::{Column, ColumnType, Table};