pub trait WrapIterator<'s, Item> {
// Required method
fn wrap_iter(self) -> WrappedIterator<'s, Item> ⓘ;
}Expand description
Convenient trait to wrap iterators.
Required Methods§
Sourcefn wrap_iter(self) -> WrappedIterator<'s, Item> ⓘ
fn wrap_iter(self) -> WrappedIterator<'s, Item> ⓘ
Wrap current struct into wrapped iterator.