pub trait IntoBlockIterator<const N: usize> {
type Item: AsSafView<N>;
type Iter: ExactSizeIterator<Item = Self::Item>;
// Required method
fn into_block_iter(self, block_size: usize) -> Self::Iter;
}Expand description
A type that can be turned into an iterator blocks of SAF sites.
Required Associated Types§
Sourcetype Iter: ExactSizeIterator<Item = Self::Item>
type Iter: ExactSizeIterator<Item = Self::Item>
The type of iterator.
Required Methods§
Sourcefn into_block_iter(self, block_size: usize) -> Self::Iter
fn into_block_iter(self, block_size: usize) -> Self::Iter
Convert this type into an iterator over SAF blocks containing
block_size sites per block.