Trait Grader
pub trait Grader: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn grade(&self, run: &RunRecord) -> Vec<GradeResult>;
}Expand description
A scorer over a completed run. Phase 0 has a single implementation
(ExpectationsGrader); the trait exists so later phases can add more.