pub trait BreadthFirst<'item>: BreadthFirst {
type Advance: Flatten;
const DEPTH: usize;
// Required methods
fn next(&'item self, index_sum: usize) -> Option<Self::Advance>;
fn rewind(&self);
}Expand description
Helper trait returning a nested list that will be turned into a flat list for a huge but finite range of tuple sizes.
Required Associated Constants§
Required Associated Types§
Required Methods§
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.