pub trait SourceAnalyzer {
// Required method
fn analyze_rust(&self, content: &str) -> RustFunctionComplexitySummary;
}Expand description
Testable source analyzer seam for review and gate callers.
Required Methods§
Sourcefn analyze_rust(&self, content: &str) -> RustFunctionComplexitySummary
fn analyze_rust(&self, content: &str) -> RustFunctionComplexitySummary
Analyze function-scoped Rust complexity for one source file.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".