Trait map_for::Filter [] [src]

pub trait Filter<Item> {
    type Item;
    fn filter<P>(self, predicate: P) -> Option<Item>
    where
        P: FnOnce(&Self::Item) -> bool
; }

Associated Types

Required Methods

Implementors