pub trait Estimate<R> {
// Required methods
fn estimate(&mut self, records: R, cfg: &GridConfig);
fn get(&self, i: usize) -> Option<usize>;
fn total(&self) -> usize;
}
Expand description
An Evaluator of an metric of a Grid
Required Methods§
Sourcefn estimate(&mut self, records: R, cfg: &GridConfig)
fn estimate(&mut self, records: R, cfg: &GridConfig)
Estimates a metric.