Trait PatternSearchExt

Source
pub trait PatternSearchExt<'a, T>: Iterator<Item = T> + Sized{
    // Required method
    fn search_pattern(
        self,
        pattern: &'a Pattern<T>,
    ) -> PatternSearchIterator<'a, Self, T> ;
}

Required Methods§

Source

fn search_pattern( self, pattern: &'a Pattern<T>, ) -> PatternSearchIterator<'a, 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<'a, I, T> PatternSearchExt<'a, T> for I
where I: Iterator<Item = T>, T: From<u8> + Binary + PrimInt + Unsigned + Default + ShlAssign<u32> + PartialEq + PrimInt<FromStrRadixErr = ParseIntError> + BitOrAssign + BitAndAssign,