pub trait ReportTemplate {
// Required method
fn generate(
&self,
results: &HashMap<String, BenchmarkResult>,
) -> Result<String, Box<dyn Error>>;
}Expand description
Trait for report template generation
pub trait ReportTemplate {
// Required method
fn generate(
&self,
results: &HashMap<String, BenchmarkResult>,
) -> Result<String, Box<dyn Error>>;
}Trait for report template generation