[][src]Struct iterable::WithFilter

pub struct WithFilter<I, F> { /* fields omitted */ }

Trait Implementations

impl<I, F> Consumer for WithFilter<I, F> where
    I: Consumer,
    F: Fn(&I::Item) -> bool
[src]

type Item = I::Item

type IntoIter = Filter<I::IntoIter, F>

impl<I, F> Iterable for WithFilter<I, F> where
    I: Iterable,
    F: Fn(&I::Item) -> bool
[src]

type C = I::C

type CC = I::CC

type CR = I::CR

Auto Trait Implementations

impl<I, F> RefUnwindSafe for WithFilter<I, F> where
    F: RefUnwindSafe,
    I: RefUnwindSafe

impl<I, F> Send for WithFilter<I, F> where
    F: Send,
    I: Send

impl<I, F> Sync for WithFilter<I, F> where
    F: Sync,
    I: Sync

impl<I, F> Unpin for WithFilter<I, F> where
    F: Unpin,
    I: Unpin

impl<I, F> UnwindSafe for WithFilter<I, F> where
    F: UnwindSafe,
    I: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.