tiger_lib/report/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! Error report collection and printing facilities.

pub(crate) use builder::{err, fatal, report, tips, untidy, warn, ReportBuilderStage3};
pub(crate) use error_key::ErrorKey;
pub(crate) use error_loc::ErrorLoc;
pub use errors::*;
pub(crate) use filter::FilterRule;
pub(crate) use output_style::OutputStyle;
pub use report_struct::{Confidence, LogReport, PointedMessage, Severity};
pub use suppress::suppress_from_json;

mod builder;
mod error_key;
mod error_loc;
mod errors;
mod filter;
mod output_style;
mod report_struct;
mod suppress;
mod writer;
mod writer_json;