Trait orx_concurrent_iter::NextChunk
source · pub trait NextChunk<T> {
type ChunkIter: Iterator<Item = T>;
// Required methods
fn values(self) -> Self::ChunkIter;
fn begin_idx(&self) -> usize;
}
Expand description
A trait representing return types of a next_chunk
call on a concurrent iterator.