luaur_analysis/records/
stats.rs1#[derive(Debug, Clone, Copy, Default, PartialEq)]
2pub struct Stats {
3 pub(crate) files: usize,
4 pub(crate) lines: usize,
5 pub(crate) files_strict: usize,
6 pub(crate) files_nonstrict: usize,
7 pub(crate) types_allocated: usize,
8 pub(crate) type_packs_allocated: usize,
9 pub(crate) bool_singletons_minted: usize,
10 pub(crate) str_singletons_minted: usize,
11 pub(crate) unique_str_singletons_minted: usize,
12 pub(crate) time_read: f64,
13 pub(crate) time_parse: f64,
14 pub(crate) time_check: f64,
15 pub(crate) time_lint: f64,
16 pub(crate) dynamic_constraints_created: usize,
17}