pub trait Estimate<R> {
    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

Estimates a metric.

Gets a metric by index.

Calculates a sum of metrics.

Implementors