[][src]Struct compt::Map

pub struct Map<C, F> { /* fields omitted */ }

Map iterator adapter

Trait Implementations

impl<B, C: FixedDepthVisitor, F: Fn(C::Item) -> B + Clone> FixedDepthVisitor for Map<C, F>[src]

impl<B, C: Visitor, F: Fn(C::Item) -> B + Clone> Visitor for Map<C, F>[src]

type Item = B

The common item produced for both leafs and non leafs.

Auto Trait Implementations

impl<C, F> Send for Map<C, F> where
    C: Send,
    F: Send

impl<C, F> Sync for Map<C, F> where
    C: Sync,
    F: Sync

impl<C, F> Unpin for Map<C, F> where
    C: Unpin,
    F: Unpin

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.