1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! This module contains new lightweight postprocessing for non-provable components.
mod error;
#[allow(unused_imports)]
pub use error::{PostprocessingError, PostprocessingResult};
mod owned_table_postprocessing;

mod postprocessing_step;
#[allow(unused_imports)]
pub use owned_table_postprocessing::{apply_postprocessing_steps, OwnedTablePostprocessing};
pub use postprocessing_step::PostprocessingStep;
#[cfg(test)]
pub mod test_utility;

mod order_by_expr;
pub use order_by_expr::OrderByExpr;
#[cfg(test)]
mod order_by_expr_test;

mod slice_expr;
pub use slice_expr::SliceExpr;
#[cfg(test)]
mod slice_expr_test;