Trait brassfibre::prelude::BasicAggregation [] [src]

pub trait BasicAggregation<'s> {
    type Kept;
    type Counted;
    fn sum(&'s self) -> Self::Kept;
    fn count(&'s self) -> Self::Counted;
}

Associated Types

Required Methods

Implementors