Trait PatternSkipExt

Source
pub trait PatternSkipExt<T>: Iterator<Item = PatternSearchType<T>> + Sized {
    // Required method
    fn skip_pattern(self, count: usize) -> PatternSkipIterator<Self, T> ;
}

Required Methods§

Source

fn skip_pattern(self, count: usize) -> PatternSkipIterator<Self, T>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<I, T> PatternSkipExt<T> for I
where I: Iterator<Item = PatternSearchType<T>>,