pub trait NextWhere<T> {
    type Item;

    fn next_where<F>(&mut self, f: &F) -> Option<Self::Item>
    where
        F: Filter<T>
; }

Required Associated Types

Required Methods

Implementors