Trait Estimate

Source
pub trait Estimate<R, C> {
    // Required method
    fn estimate(&mut self, records: R, config: &C);
}
Expand description

Dimension estimation of a grid.

It’s a friend trait of Dimension.

Required Methods§

Source

fn estimate(&mut self, records: R, config: &C)

Estimates a metric.

Implementations on Foreign Types§

Source§

impl<T, R, C> Estimate<R, C> for &mut T
where T: Estimate<R, C>,

Source§

fn estimate(&mut self, records: R, config: &C)

Implementors§