pub trait ParallelVectorGenerator {
type Vector;
// Required methods
fn generate_scan_vectors(
self,
) -> impl Iterator<Item = impl Iterator<Item = Self::Vector> + Send> + Send;
fn num_chunks(&self) -> usize;
fn size_hint(&self) -> usize;
}
Required Associated Types§
Required Methods§
fn generate_scan_vectors( self, ) -> impl Iterator<Item = impl Iterator<Item = Self::Vector> + Send> + Send
fn num_chunks(&self) -> usize
fn size_hint(&self) -> usize
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.