[][src]Trait amadeus_core::par_sink::ReducerSend

pub trait ReducerSend<Source>: Reducer<Source, Output = Self::Output> {
    type Output: Send + 'static;
}

Associated Types

type Output: Send + 'static

Loading content...

Implementors

impl ReducerSend<Sum0> for ReduceA0[src]

type Output = ()

impl ReducerSend<bool> for BoolAndReducer[src]

type Output = bool

impl ReducerSend<bool> for BoolOrReducer[src]

type Output = bool

impl ReducerSend<()> for ReduceC0[src]

type Output = ()

impl<A, C> ReducerSend<A> for FolderSyncReducer<A, C> where
    C: FolderSync<A>,
    C::Output: Send + 'static, 
[src]

type Output = C::Output

impl<A, F> ReducerSend<A> for AllReducer<A, F> where
    F: FnMut<(A,), Output = bool>, 
[src]

type Output = bool

impl<A, F> ReducerSend<A> for AnyReducer<A, F> where
    F: FnMut<(A,), Output = bool>, 
[src]

type Output = bool

impl<A, F> ReducerSend<A> for ForEachReducer<A, F> where
    F: FnMut<(A,), Output = ()> + Clone
[src]

type Output = ()

impl<A, T: Default + Extend<A>> ReducerSend<A> for PushReducer<A, T> where
    T: Send + 'static, 
[src]

type Output = T

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, D: Reducer<S3>, E: Reducer<S4>, F: Reducer<S5>, G: Reducer<S6>, H: Reducer<S7>, S0, S1, S2, S3, S4, S5, S6, S7> ReducerSend<Sum8<S0, S1, S2, S3, S4, S5, S6, S7>> for ReduceA8<A, B, C, D, E, F, G, H> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static,
    D::Output: Send + 'static,
    E::Output: Send + 'static,
    F::Output: Send + 'static,
    G::Output: Send + 'static,
    H::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output, F::Output, G::Output, H::Output)

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, D: Reducer<S3>, E: Reducer<S4>, F: Reducer<S5>, G: Reducer<S6>, S0, S1, S2, S3, S4, S5, S6> ReducerSend<Sum7<S0, S1, S2, S3, S4, S5, S6>> for ReduceA7<A, B, C, D, E, F, G> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static,
    D::Output: Send + 'static,
    E::Output: Send + 'static,
    F::Output: Send + 'static,
    G::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output, F::Output, G::Output)

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, D: Reducer<S3>, E: Reducer<S4>, F: Reducer<S5>, S0, S1, S2, S3, S4, S5> ReducerSend<Sum6<S0, S1, S2, S3, S4, S5>> for ReduceA6<A, B, C, D, E, F> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static,
    D::Output: Send + 'static,
    E::Output: Send + 'static,
    F::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output, F::Output)

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, D: Reducer<S3>, E: Reducer<S4>, S0, S1, S2, S3, S4> ReducerSend<Sum5<S0, S1, S2, S3, S4>> for ReduceA5<A, B, C, D, E> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static,
    D::Output: Send + 'static,
    E::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output)

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, D: Reducer<S3>, S0, S1, S2, S3> ReducerSend<Sum4<S0, S1, S2, S3>> for ReduceA4<A, B, C, D> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static,
    D::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output, C::Output, D::Output)

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, S0, S1, S2> ReducerSend<Sum3<S0, S1, S2>> for ReduceA3<A, B, C> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output, C::Output)

impl<A: Reducer<S0>, B: Reducer<S1>, S0, S1> ReducerSend<Sum2<S0, S1>> for ReduceA2<A, B> where
    A::Output: Send + 'static,
    B::Output: Send + 'static, 
[src]

type Output = (A::Output, B::Output)

impl<A: Reducer<S0>, S0> ReducerSend<Sum1<S0>> for ReduceA1<A> where
    A::Output: Send + 'static, 
[src]

type Output = (A::Output,)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, D: ReducerSend<S3>, E: ReducerSend<S4>, F: ReducerSend<S5>, G: ReducerSend<S6>, H: ReducerSend<S7>, S0, S1, S2, S3, S4, S5, S6, S7> ReducerSend<(S0, S1, S2, S3, S4, S5, S6, S7)> for ReduceC8<A, B, C, D, E, F, G, H>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output, <D as ReducerSend<S3>>::Output, <E as ReducerSend<S4>>::Output, <F as ReducerSend<S5>>::Output, <G as ReducerSend<S6>>::Output, <H as ReducerSend<S7>>::Output)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, D: ReducerSend<S3>, E: ReducerSend<S4>, F: ReducerSend<S5>, G: ReducerSend<S6>, S0, S1, S2, S3, S4, S5, S6> ReducerSend<(S0, S1, S2, S3, S4, S5, S6)> for ReduceC7<A, B, C, D, E, F, G>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output, <D as ReducerSend<S3>>::Output, <E as ReducerSend<S4>>::Output, <F as ReducerSend<S5>>::Output, <G as ReducerSend<S6>>::Output)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, D: ReducerSend<S3>, E: ReducerSend<S4>, F: ReducerSend<S5>, S0, S1, S2, S3, S4, S5> ReducerSend<(S0, S1, S2, S3, S4, S5)> for ReduceC6<A, B, C, D, E, F>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output, <D as ReducerSend<S3>>::Output, <E as ReducerSend<S4>>::Output, <F as ReducerSend<S5>>::Output)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, D: ReducerSend<S3>, E: ReducerSend<S4>, S0, S1, S2, S3, S4> ReducerSend<(S0, S1, S2, S3, S4)> for ReduceC5<A, B, C, D, E>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output, <D as ReducerSend<S3>>::Output, <E as ReducerSend<S4>>::Output)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, D: ReducerSend<S3>, S0, S1, S2, S3> ReducerSend<(S0, S1, S2, S3)> for ReduceC4<A, B, C, D>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output, <D as ReducerSend<S3>>::Output)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, S0, S1, S2> ReducerSend<(S0, S1, S2)> for ReduceC3<A, B, C>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output)

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, S0, S1> ReducerSend<(S0, S1)> for ReduceC2<A, B>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output)

impl<A: ReducerSend<S0>, S0> ReducerSend<(S0,)> for ReduceC1<A>[src]

type Output = (<A as ReducerSend<S0>>::Output,)

impl<A: IntoIterator<Item = B>, T: Default + Extend<B>, B> ReducerSend<A> for ExtendReducer<A, T> where
    T: Send + 'static, 
[src]

type Output = T

impl<P, R, T, U> ReducerSend<(T, U)> for GroupByReducerA<P, R, T, U> where
    P: PipeTask<U>,
    R: Reducer<P::Item> + Clone,
    T: Eq + Hash + Send + 'static,
    R::Output: Send + 'static, 
[src]

type Output = HashMap<T, R::Output>

impl<R, T, U> ReducerSend<HashMap<T, U, RandomState>> for GroupByReducerB<R, T, U> where
    R: Reducer<U> + Clone,
    T: Eq + Hash + Send + 'static,
    R::Output: Send + 'static, 
[src]

type Output = HashMap<T, R::Output>

impl<R: Reducer<Item>, E, Item> ReducerSend<Result<Item, E>> for ResultReducer<R, E> where
    R::Output: Send + 'static,
    E: Send + 'static, 
[src]

type Output = Result<R::Output, E>

impl<R: Reducer<Item>, Item> ReducerSend<Option<Item>> for OptionReducer<R> where
    R::Output: Send + 'static, 
[src]

type Output = Option<R::Output>

Loading content...