[][src]Struct amadeus::dist_iter::MapConsumer

pub struct MapConsumer<T, F> { /* fields omitted */ }

Trait Implementations

impl<C, F, R> Consumer for MapConsumer<C, F> where
    C: Consumer,
    F: FnMut(<C as Consumer>::Item) -> R + Clone
[src]

type Item = R

impl<C, F, R, Source> ConsumerMulti<Source> for MapConsumer<C, F> where
    C: ConsumerMulti<Source>,
    F: FnMut(<C as ConsumerMulti<Source>>::Item) -> R + Clone
[src]

type Item = R

impl<'de, T, F> Deserialize<'de> for MapConsumer<T, F> where
    F: Deserialize<'de>,
    T: Deserialize<'de>, 
[src]

impl<T, F> Serialize for MapConsumer<T, F> where
    F: Serialize,
    T: Serialize
[src]

Auto Trait Implementations

impl<T, F> RefUnwindSafe for MapConsumer<T, F> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, F> Send for MapConsumer<T, F> where
    F: Send,
    T: Send

impl<T, F> Sync for MapConsumer<T, F> where
    F: Sync,
    T: Sync

impl<T, F> Unpin for MapConsumer<T, F> where
    F: Unpin,
    T: Unpin

impl<T, F> UnwindSafe for MapConsumer<T, F> where
    F: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any + Serialize + Deserialize
[src]

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

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

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> Deserialize for T where
    T: DeserializeOwned
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> ProcessSend for T where
    T: Send + Serialize + Deserialize<'de> + 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

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

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

type Error = !

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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,