pub enum Report {
Audit(AuditReport),
DeadCode(FindingsReport),
Deps(FindingsReport),
Arch(FindingsReport),
Complexity(FindingsReport),
Dupes(FindingsReport),
Types(FindingsReport),
Security(FindingsReport),
Coverage(FindingsReport),
Metrics(MetricsReport),
}Expand description
The kind-discriminated output envelope. kind lets clients switch on the
result type and iterate findings.
Variants§
Audit(AuditReport)
Full unified report across all analysis areas.
DeadCode(FindingsReport)
Dead-code-only report.
Deps(FindingsReport)
Dependency-hygiene-only report.
Arch(FindingsReport)
Architecture (circular dependencies, boundaries).
Complexity(FindingsReport)
Complexity hotspots.
Dupes(FindingsReport)
Duplication / clone families.
Types(FindingsReport)
Type-annotation health.
Security(FindingsReport)
Security candidates.
Coverage(FindingsReport)
Runtime-coverage cold-path analysis.
Metrics(MetricsReport)
Code-metrics report (Maintainability Index, Halstead, raw LOC).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more