pub trait LoadHistory: Send + Sync {
// Required methods
fn load_recent(&self, limit: usize) -> Result<Vec<TestResult>, Error>;
fn clear(&self) -> Result<(), Error>;
}Expand description
Trait for reading historic results (optional). Not all storage backends need to implement this – e.g. a transient in‑memory store can choose to omit history support.