pub trait Reporter<T: Finding> {
// Required method
fn report(&self, findings: &[T]) -> Result<String>;
}Expand description
Reporter trait for outputting analysis results
pub trait Reporter<T: Finding> {
// Required method
fn report(&self, findings: &[T]) -> Result<String>;
}Reporter trait for outputting analysis results