1 2 3 4 5 6 7 8 9 10
/// CSV output renderer. pub mod csv; /// `--group-by` aggregation renderer. pub mod grouped; /// JSON output renderer (line-delimited or pretty-printed). pub mod json; /// `--summary` and `--top` aggregation renderers. pub mod summary; /// Default table output renderer. pub mod table;