Skip to main content

Reporter

Trait Reporter 

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

Output format for analysis results.

Required Methods§

Source

fn render(&self, findings: &[Finding]) -> String

Implementors§