Trait rsonpath::input::InputBlockIterator
source · pub trait InputBlockIterator<'a, const N: usize>: FallibleIterator<Item = Self::Block, Error = InputError> {
type Block: InputBlock<'a, N>;
// Required method
fn offset(&mut self, count: isize);
}
Expand description
An iterator over blocks of input of size N
.
Implementations MUST guarantee that the blocks returned from next
are exactly of size N
.
Required Associated Types§
sourcetype Block: InputBlock<'a, N>
type Block: InputBlock<'a, N>
The type of blocks returned.