1
2
3
4
5
6
7
8
//! Data structure code
//!
//! This module contains all data structure related code. It is split into two submodules to
//! separate raw structures from the processed ones, the latter being analog to the output
//! of the program

pub mod processed;
pub mod raw;