Skip to main content

InnerIter

Trait InnerIter 

Source
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§

Source

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".

Implementors§