Trait ParallelVectorGenerator

Source
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§

Source

fn generate_scan_vectors( self, ) -> impl Iterator<Item = impl Iterator<Item = Self::Vector> + Send> + Send

Source

fn num_chunks(&self) -> usize

Source

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.

Implementors§