IteratorGaussianExt

Trait IteratorGaussianExt 

Source
pub trait IteratorGaussianExt: Iterator<Item = Gaussian> + Sized {
    // Provided method
    fn collect_gaussians(self, source: GaussiansSource) -> Gaussians { ... }
}
Expand description

Trait to extend Iterator of Gaussian to collect into Gaussians.

Provided Methods§

Source

fn collect_gaussians(self, source: GaussiansSource) -> Gaussians

Collect the iterator into Gaussians with the given source.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§