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