Reporter

Trait Reporter 

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

Reporter trait for outputting analysis results

Required Methods§

Source

fn report(&self, findings: &[T]) -> Result<String>

Implementors§