1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//! Unified finding type.
//!
//! Every dimension analyzer emits rich, dimension-specific diagnostic
//! structures internally (e.g. `FunctionAnalysis`, `CycleReport`,
//! `MatchLocation`). For cross-dimension aggregation, reporting, and
//! suppression, these are projected onto a single `Finding` shape that
//! carries only what every consumer needs: where the issue lives, which
//! rule raised it, a human-readable message, and how serious it is.
//!
//! The port `DimensionAnalyzer` produces `Vec<Finding>` so the Application
//! layer can treat all analyzers uniformly.
use crate;
/// A projection of any analyzer's output into a single cross-dimension shape.
///
/// Construct directly via struct literal; all fields are `pub`. The
/// `Default` impl gives a neutral starting point for the common case
/// `Finding { file, line, dimension, rule_id, message, ..Default::default() }`
/// where column is unknown, severity is `Medium`, and the finding is not
/// suppressed.