pub trait NumericReductionFunc: Iterator<Item = f64> {
// Provided method
fn aggregate_by(&mut self, fun: ReductionFunc) -> Option<Self::Item> { ... }
}Provided Methods§
fn aggregate_by(&mut self, fun: ReductionFunc) -> Option<Self::Item>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".