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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".