pub trait IteratorGaussianExt: Iterator<Item = Gaussian> + Sized {
// Provided method
fn collect_gaussians(self, source: GaussiansSource) -> Gaussians { ... }
}Provided Methods§
Sourcefn collect_gaussians(self, source: GaussiansSource) -> Gaussians
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.