pub trait InnerIter<I> {
// Required method
fn into_inner(self) -> I;
}
Expand description
Higher-level classifier that can be consumed to retrieve the inner
Input::BlockIterator
.
Required Methods§
Sourcefn into_inner(self) -> I
fn into_inner(self) -> I
Consume self
and return the wrapped Input::BlockIterator
.