[][src]Struct iterable::LazyScan

#[must_use = "iterable adaptors are lazy and do nothing unless consumed"]pub struct LazyScan<S, I, F> { /* fields omitted */ }

Trait Implementations

impl<S: Clone, I: Clone, F: Clone> Clone for LazyScan<S, I, F>[src]

impl<S, I, F> Consumer for LazyScan<S, I, F> where
    S: Clone,
    I: Consumer,
    F: Fn(S, I::Item) -> S, 
[src]

type Item = S

type IntoIter = ScanIter<S, I::IntoIter, F>

impl<S: Debug, I: Debug, F: Debug> Debug for LazyScan<S, I, F>[src]

impl<S, I, F> Iterable for LazyScan<S, I, F> where
    S: Clone,
    I: Iterable,
    F: Fn(S, I::Item) -> S, 
[src]

type C = I::CC

type CC = I::CC

Auto Trait Implementations

impl<S, I, F> RefUnwindSafe for LazyScan<S, I, F> where
    F: RefUnwindSafe,
    I: RefUnwindSafe,
    S: RefUnwindSafe

impl<S, I, F> Send for LazyScan<S, I, F> where
    F: Send,
    I: Send,
    S: Send

impl<S, I, F> Sync for LazyScan<S, I, F> where
    F: Sync,
    I: Sync,
    S: Sync

impl<S, I, F> Unpin for LazyScan<S, I, F> where
    F: Unpin,
    I: Unpin,
    S: Unpin

impl<S, I, F> UnwindSafe for LazyScan<S, I, F> where
    F: UnwindSafe,
    I: UnwindSafe,
    S: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.