pub trait Analysis { // Required methods fn name(&self) -> &'static str; fn run(&mut self); fn reset(&mut self); }
Return the name of the analysis.
Execute the analysis.
Reset the analysis result.