[][src]Trait amadeus::par_sink::DistributedSink

#[must_use]pub trait DistributedSink<Item> where
    <Self::ReduceC as Reducer<<Self::ReduceB as ReducerProcessSend<<Self::ReduceA as ReducerSend<<Self::Pipe as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done == Self::Done
{ type Done; type Pipe: DistributedPipe<Item>; type ReduceA: ReducerSend<<Self::Pipe as DistributedPipe<Item>>::Output> + ProcessSend + Clone + Send; type ReduceB: ReducerProcessSend<<Self::ReduceA as ReducerSend<<Self::Pipe as DistributedPipe<Item>>::Output>>::Done> + ProcessSend + Clone; type ReduceC: Reducer<<Self::ReduceB as ReducerProcessSend<<Self::ReduceA as ReducerSend<<Self::Pipe as DistributedPipe<Item>>::Output>>::Done>>::Done>; fn reducers(
        self
    ) -> (Self::Pipe, Self::ReduceA, Self::ReduceB, Self::ReduceC); }

Associated Types

Loading content...

Required methods

fn reducers(self) -> (Self::Pipe, Self::ReduceA, Self::ReduceB, Self::ReduceC)

Loading content...

Implementations on Foreign Types

impl<Item, R0, R1, R2, R3, R4, R5, O0, O1, O2, O3, O4, O5> DistributedSink<Item> for (R0, R1, R2, R3, R4, R5) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>,
    R2: DistributedSink<Item, Done = O2>,
    R3: DistributedSink<Item, Done = O3>,
    R4: DistributedSink<Item, Done = O4>,
    R5: DistributedSink<Item, Done = O5>, 
[src]

type Done = (O0, O1, O2, O3, O4, O5)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe, <R2 as DistributedSink<Item>>::Pipe, <R3 as DistributedSink<Item>>::Pipe, <R4 as DistributedSink<Item>>::Pipe, <R5 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA6<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA, <R2 as DistributedSink<Item>>::ReduceA, <R3 as DistributedSink<Item>>::ReduceA, <R4 as DistributedSink<Item>>::ReduceA, <R5 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC6<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB, <R2 as DistributedSink<Item>>::ReduceB, <R3 as DistributedSink<Item>>::ReduceB, <R4 as DistributedSink<Item>>::ReduceB, <R5 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC6<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC, <R2 as DistributedSink<Item>>::ReduceC, <R3 as DistributedSink<Item>>::ReduceC, <R4 as DistributedSink<Item>>::ReduceC, <R5 as DistributedSink<Item>>::ReduceC>

impl<Item, R0, O0> DistributedSink<Item> for (R0,) where
    R0: DistributedSink<Item, Done = O0>, 
[src]

type Done = (O0,)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe,)

type ReduceA = ReduceA1<<R0 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC1<<R0 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC1<<R0 as DistributedSink<Item>>::ReduceC>

impl<Item, R0, R1, R2, R3, R4, O0, O1, O2, O3, O4> DistributedSink<Item> for (R0, R1, R2, R3, R4) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>,
    R2: DistributedSink<Item, Done = O2>,
    R3: DistributedSink<Item, Done = O3>,
    R4: DistributedSink<Item, Done = O4>, 
[src]

type Done = (O0, O1, O2, O3, O4)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe, <R2 as DistributedSink<Item>>::Pipe, <R3 as DistributedSink<Item>>::Pipe, <R4 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA5<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA, <R2 as DistributedSink<Item>>::ReduceA, <R3 as DistributedSink<Item>>::ReduceA, <R4 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC5<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB, <R2 as DistributedSink<Item>>::ReduceB, <R3 as DistributedSink<Item>>::ReduceB, <R4 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC5<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC, <R2 as DistributedSink<Item>>::ReduceC, <R3 as DistributedSink<Item>>::ReduceC, <R4 as DistributedSink<Item>>::ReduceC>

impl<Item, R0, R1, R2, R3, R4, R5, R6, O0, O1, O2, O3, O4, O5, O6> DistributedSink<Item> for (R0, R1, R2, R3, R4, R5, R6) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>,
    R2: DistributedSink<Item, Done = O2>,
    R3: DistributedSink<Item, Done = O3>,
    R4: DistributedSink<Item, Done = O4>,
    R5: DistributedSink<Item, Done = O5>,
    R6: DistributedSink<Item, Done = O6>, 
[src]

type Done = (O0, O1, O2, O3, O4, O5, O6)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe, <R2 as DistributedSink<Item>>::Pipe, <R3 as DistributedSink<Item>>::Pipe, <R4 as DistributedSink<Item>>::Pipe, <R5 as DistributedSink<Item>>::Pipe, <R6 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA7<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA, <R2 as DistributedSink<Item>>::ReduceA, <R3 as DistributedSink<Item>>::ReduceA, <R4 as DistributedSink<Item>>::ReduceA, <R5 as DistributedSink<Item>>::ReduceA, <R6 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC7<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB, <R2 as DistributedSink<Item>>::ReduceB, <R3 as DistributedSink<Item>>::ReduceB, <R4 as DistributedSink<Item>>::ReduceB, <R5 as DistributedSink<Item>>::ReduceB, <R6 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC7<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC, <R2 as DistributedSink<Item>>::ReduceC, <R3 as DistributedSink<Item>>::ReduceC, <R4 as DistributedSink<Item>>::ReduceC, <R5 as DistributedSink<Item>>::ReduceC, <R6 as DistributedSink<Item>>::ReduceC>

impl<Item, R0, R1, R2, R3, R4, R5, R6, R7, O0, O1, O2, O3, O4, O5, O6, O7> DistributedSink<Item> for (R0, R1, R2, R3, R4, R5, R6, R7) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>,
    R2: DistributedSink<Item, Done = O2>,
    R3: DistributedSink<Item, Done = O3>,
    R4: DistributedSink<Item, Done = O4>,
    R5: DistributedSink<Item, Done = O5>,
    R6: DistributedSink<Item, Done = O6>,
    R7: DistributedSink<Item, Done = O7>, 
[src]

type Done = (O0, O1, O2, O3, O4, O5, O6, O7)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe, <R2 as DistributedSink<Item>>::Pipe, <R3 as DistributedSink<Item>>::Pipe, <R4 as DistributedSink<Item>>::Pipe, <R5 as DistributedSink<Item>>::Pipe, <R6 as DistributedSink<Item>>::Pipe, <R7 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA8<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA, <R2 as DistributedSink<Item>>::ReduceA, <R3 as DistributedSink<Item>>::ReduceA, <R4 as DistributedSink<Item>>::ReduceA, <R5 as DistributedSink<Item>>::ReduceA, <R6 as DistributedSink<Item>>::ReduceA, <R7 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC8<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB, <R2 as DistributedSink<Item>>::ReduceB, <R3 as DistributedSink<Item>>::ReduceB, <R4 as DistributedSink<Item>>::ReduceB, <R5 as DistributedSink<Item>>::ReduceB, <R6 as DistributedSink<Item>>::ReduceB, <R7 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC8<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC, <R2 as DistributedSink<Item>>::ReduceC, <R3 as DistributedSink<Item>>::ReduceC, <R4 as DistributedSink<Item>>::ReduceC, <R5 as DistributedSink<Item>>::ReduceC, <R6 as DistributedSink<Item>>::ReduceC, <R7 as DistributedSink<Item>>::ReduceC>

impl<Item> DistributedSink<Item> for ()[src]

type Done = ()

type Pipe = ()

type ReduceA = ReduceA0

type ReduceB = ReduceC0

type ReduceC = ReduceC0

impl<Item, R0, R1, R2, R3, O0, O1, O2, O3> DistributedSink<Item> for (R0, R1, R2, R3) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>,
    R2: DistributedSink<Item, Done = O2>,
    R3: DistributedSink<Item, Done = O3>, 
[src]

type Done = (O0, O1, O2, O3)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe, <R2 as DistributedSink<Item>>::Pipe, <R3 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA4<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA, <R2 as DistributedSink<Item>>::ReduceA, <R3 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC4<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB, <R2 as DistributedSink<Item>>::ReduceB, <R3 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC4<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC, <R2 as DistributedSink<Item>>::ReduceC, <R3 as DistributedSink<Item>>::ReduceC>

impl<Item, R0, R1, R2, O0, O1, O2> DistributedSink<Item> for (R0, R1, R2) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>,
    R2: DistributedSink<Item, Done = O2>, 
[src]

type Done = (O0, O1, O2)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe, <R2 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA3<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA, <R2 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC3<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB, <R2 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC3<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC, <R2 as DistributedSink<Item>>::ReduceC>

impl<Item, R0, R1, O0, O1> DistributedSink<Item> for (R0, R1) where
    Item: Copy,
    R0: DistributedSink<Item, Done = O0>,
    R1: DistributedSink<Item, Done = O1>, 
[src]

type Done = (O0, O1)

type Pipe = (<R0 as DistributedSink<Item>>::Pipe, <R1 as DistributedSink<Item>>::Pipe)

type ReduceA = ReduceA2<<R0 as DistributedSink<Item>>::ReduceA, <R1 as DistributedSink<Item>>::ReduceA>

type ReduceB = ReduceC2<<R0 as DistributedSink<Item>>::ReduceB, <R1 as DistributedSink<Item>>::ReduceB>

type ReduceC = ReduceC2<<R0 as DistributedSink<Item>>::ReduceC, <R1 as DistributedSink<Item>>::ReduceC>

Loading content...

Implementors

impl<A, B, C, Item, RefAItem> DistributedSink<Item> for Fork<A, B, C, RefAItem> where
    A: DistributedPipe<Item>,
    B: DistributedSink<<A as DistributedPipe<Item>>::Output>,
    C: DistributedSink<RefAItem>,
    RefAItem: 'static, 
[src]

type Done = (<B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::Done, <C as DistributedSink<RefAItem>>::Done)

type Pipe = Fork<A, <B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::Pipe, <C as DistributedSink<RefAItem>>::Pipe, RefAItem>

type ReduceA = ReduceA2<<B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::ReduceA, <C as DistributedSink<RefAItem>>::ReduceA>

type ReduceB = ReduceC2<<B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::ReduceB, <C as DistributedSink<RefAItem>>::ReduceB>

type ReduceC = ReduceC2<<B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::ReduceC, <C as DistributedSink<RefAItem>>::ReduceC>

impl<A, B, Item> DistributedSink<Item> for Pipe<A, B> where
    A: DistributedPipe<Item>,
    B: DistributedSink<<A as DistributedPipe<Item>>::Output>, 
[src]

type Done = <B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::Done

type Pipe = Pipe<A, <B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::Pipe>

type ReduceA = <B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::ReduceA

type ReduceB = <B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::ReduceB

type ReduceC = <B as DistributedSink<<A as DistributedPipe<Item>>::Output>>::ReduceC

impl<A, B, Item, T, U> DistributedSink<Item> for GroupBy<A, B> where
    A: DistributedPipe<Item, Output = (T, U)>,
    B: DistributedSink<U>,
    T: Eq + Hash + ProcessSend + 'static,
    <<B as DistributedSink<U>>::Pipe as DistributedPipe<U>>::Task: Clone,
    <<B as DistributedSink<U>>::Pipe as DistributedPipe<U>>::Task: ProcessSend,
    <<B as DistributedSink<U>>::Pipe as DistributedPipe<U>>::Task: 'static,
    <B as DistributedSink<U>>::ReduceA: Clone,
    <B as DistributedSink<U>>::ReduceA: ProcessSend,
    <B as DistributedSink<U>>::ReduceA: 'static,
    <B as DistributedSink<U>>::ReduceB: Clone,
    <B as DistributedSink<U>>::ReduceC: Clone,
    <B as DistributedSink<U>>::Done: ProcessSend,
    <B as DistributedSink<U>>::Done: 'static, 
[src]

type Done = IndexMap<T, <B as DistributedSink<U>>::Done, RandomState>

type Pipe = A

type ReduceA = GroupByReducerA<<<B as DistributedSink<U>>::Pipe as DistributedPipe<U>>::Task, <B as DistributedSink<U>>::ReduceA, T, U>

type ReduceB = GroupByReducerB<<B as DistributedSink<U>>::ReduceB, T, <<B as DistributedSink<U>>::ReduceA as ReducerSend<<<B as DistributedSink<U>>::Pipe as DistributedPipe<U>>::Output>>::Done>

type ReduceC = GroupByReducerB<<B as DistributedSink<U>>::ReduceC, T, <<B as DistributedSink<U>>::ReduceB as ReducerProcessSend<<<B as DistributedSink<U>>::ReduceA as Reducer<<<B as DistributedSink<U>>::Pipe as DistributedPipe<U>>::Output>>::Done>>::Done>

impl<P, Item> DistributedSink<Item> for Count<P> where
    P: DistributedPipe<Item>, 
[src]

type Done = <<Count<P> as DistributedSink<Item>>::ReduceC as Reducer<<<Count<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Count<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, CountFolder>

type ReduceB = FolderSyncReducer<<<Count<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, SumFolder<usize>>

type ReduceC = FolderSyncReducer<<<Count<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Count<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, SumFolder<usize>>

impl<P, Item> DistributedSink<Item> for Histogram<P> where
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: Hash,
    <P as DistributedPipe<Item>>::Output: Ord,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<Histogram<P> as DistributedSink<Item>>::ReduceC as Reducer<<<Histogram<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Histogram<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, HistogramFolder<<P as DistributedPipe<Item>>::Output, StepA>>

type ReduceB = FolderSyncReducer<<<Histogram<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, HistogramFolder<<P as DistributedPipe<Item>>::Output, StepB>>

type ReduceC = FolderSyncReducer<<<Histogram<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Histogram<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, HistogramFolder<<P as DistributedPipe<Item>>::Output, StepB>>

impl<P, Item> DistributedSink<Item> for Max<P> where
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: Ord,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<Max<P> as DistributedSink<Item>>::ReduceC as Reducer<<<Max<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Max<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, Max<<P as DistributedPipe<Item>>::Output>>

type ReduceB = FolderSyncReducer<<<Max<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, Max<<P as DistributedPipe<Item>>::Output>>

type ReduceC = FolderSyncReducer<<<Max<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Max<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, Max<<P as DistributedPipe<Item>>::Output>>

impl<P, Item> DistributedSink<Item> for Min<P> where
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: Ord,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<Min<P> as DistributedSink<Item>>::ReduceC as Reducer<<<Min<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Min<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, Min<<P as DistributedPipe<Item>>::Output>>

type ReduceB = FolderSyncReducer<<<Min<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, Min<<P as DistributedPipe<Item>>::Output>>

type ReduceC = FolderSyncReducer<<<Min<P> as DistributedSink<Item>>::ReduceB as Reducer<<<Min<P> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, Min<<P as DistributedPipe<Item>>::Output>>

impl<P, Item> DistributedSink<Item> for MostFrequent<P> where
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: Clone,
    <P as DistributedPipe<Item>>::Output: Hash,
    <P as DistributedPipe<Item>>::Output: Eq,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

impl<P, Item> DistributedSink<Item> for SampleUnstable<P> where
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

impl<P, Item, A, B> DistributedSink<Item> for MostDistinct<P> where
    A: Clone + Hash + Eq + ProcessSend + 'static,
    B: Hash + 'static,
    P: DistributedPipe<Item, Output = (A, B)>, 
[src]

impl<P, Item, B> DistributedSink<Item> for Sum<P, B> where
    B: Sum<<P as DistributedPipe<Item>>::Output> + Sum<B> + ProcessSend + 'static,
    P: DistributedPipe<Item>, 
[src]

type Done = <<Sum<P, B> as DistributedSink<Item>>::ReduceC as Reducer<<<Sum<P, B> as DistributedSink<Item>>::ReduceB as Reducer<<<Sum<P, B> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, SumFolder<B>>

type ReduceB = FolderSyncReducer<<<Sum<P, B> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, SumFolder<B>>

type ReduceC = FolderSyncReducer<<<Sum<P, B> as DistributedSink<Item>>::ReduceB as Reducer<<<Sum<P, B> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, SumFolder<B>>

impl<P, Item, F> DistributedSink<Item> for All<P, F> where
    F: FnMut<(<P as DistributedPipe<Item>>::Output,), Output = bool> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>, 
[src]

type Done = bool

type Pipe = P

type ReduceA = AllReducer<<P as DistributedPipe<Item>>::Output, F>

type ReduceB = BoolAndReducer

type ReduceC = BoolAndReducer

impl<P, Item, F> DistributedSink<Item> for Any<P, F> where
    F: FnMut<(<P as DistributedPipe<Item>>::Output,), Output = bool> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>, 
[src]

type Done = bool

type Pipe = P

type ReduceA = AnyReducer<<P as DistributedPipe<Item>>::Output, F>

type ReduceB = BoolOrReducer

type ReduceC = BoolOrReducer

impl<P, Item, F> DistributedSink<Item> for Combine<P, F> where
    F: FnMut<(<P as DistributedPipe<Item>>::Output, <P as DistributedPipe<Item>>::Output), Output = <P as DistributedPipe<Item>>::Output> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<Combine<P, F> as DistributedSink<Item>>::ReduceC as Reducer<<<Combine<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<Combine<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, ReduceFn<F, <P as DistributedPipe<Item>>::Output>>

type ReduceB = FolderSyncReducer<<<Combine<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, ReduceFn<F, <P as DistributedPipe<Item>>::Output>>

type ReduceC = FolderSyncReducer<<<Combine<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<Combine<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, ReduceFn<F, <P as DistributedPipe<Item>>::Output>>

impl<P, Item, F> DistributedSink<Item> for ForEach<P, F> where
    F: FnMut<(<P as DistributedPipe<Item>>::Output,), Output = ()> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>, 
[src]

type Done = ()

type Pipe = P

type ReduceA = ForEachReducer<<P as DistributedPipe<Item>>::Output, F>

type ReduceB = PushReducer<(), ()>

type ReduceC = PushReducer<(), ()>

impl<P, Item, F> DistributedSink<Item> for MaxBy<P, F> where
    F: for<'a, 'b> FnMut<(&'a <P as DistributedPipe<Item>>::Output, &'b <P as DistributedPipe<Item>>::Output), Output = Ordering> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<MaxBy<P, F> as DistributedSink<Item>>::ReduceC as Reducer<<<MaxBy<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MaxBy<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, MaxBy<<P as DistributedPipe<Item>>::Output, F>>

type ReduceB = FolderSyncReducer<<<MaxBy<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, MaxBy<<P as DistributedPipe<Item>>::Output, F>>

type ReduceC = FolderSyncReducer<<<MaxBy<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MaxBy<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, MaxBy<<P as DistributedPipe<Item>>::Output, F>>

impl<P, Item, F> DistributedSink<Item> for MinBy<P, F> where
    F: for<'a, 'b> FnMut<(&'a <P as DistributedPipe<Item>>::Output, &'b <P as DistributedPipe<Item>>::Output), Output = Ordering> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<MinBy<P, F> as DistributedSink<Item>>::ReduceC as Reducer<<<MinBy<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MinBy<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, MinBy<<P as DistributedPipe<Item>>::Output, F>>

type ReduceB = FolderSyncReducer<<<MinBy<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, MinBy<<P as DistributedPipe<Item>>::Output, F>>

type ReduceC = FolderSyncReducer<<<MinBy<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MinBy<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, MinBy<<P as DistributedPipe<Item>>::Output, F>>

impl<P, Item, F, B> DistributedSink<Item> for MaxByKey<P, F> where
    B: Ord + 'static,
    F: for<'a> FnMut<(&'a <P as DistributedPipe<Item>>::Output,), Output = B> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<MaxByKey<P, F> as DistributedSink<Item>>::ReduceC as Reducer<<<MaxByKey<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MaxByKey<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, MaxByKey<<P as DistributedPipe<Item>>::Output, F, B>>

type ReduceB = FolderSyncReducer<<<MaxByKey<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, MaxByKey<<P as DistributedPipe<Item>>::Output, F, B>>

type ReduceC = FolderSyncReducer<<<MaxByKey<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MaxByKey<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, MaxByKey<<P as DistributedPipe<Item>>::Output, F, B>>

impl<P, Item, F, B> DistributedSink<Item> for MinByKey<P, F> where
    B: Ord + 'static,
    F: for<'a> FnMut<(&'a <P as DistributedPipe<Item>>::Output,), Output = B> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>,
    <P as DistributedPipe<Item>>::Output: ProcessSend,
    <P as DistributedPipe<Item>>::Output: 'static, 
[src]

type Done = <<MinByKey<P, F> as DistributedSink<Item>>::ReduceC as Reducer<<<MinByKey<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MinByKey<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, MinByKey<<P as DistributedPipe<Item>>::Output, F, B>>

type ReduceB = FolderSyncReducer<<<MinByKey<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, MinByKey<<P as DistributedPipe<Item>>::Output, F, B>>

type ReduceC = FolderSyncReducer<<<MinByKey<P, F> as DistributedSink<Item>>::ReduceB as Reducer<<<MinByKey<P, F> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, MinByKey<<P as DistributedPipe<Item>>::Output, F, B>>

impl<P, Item, ID, F, B> DistributedSink<Item> for Fold<P, ID, F, B> where
    B: ProcessSend + 'static,
    F: FnMut<(B, Either<<P as DistributedPipe<Item>>::Output, B>), Output = B> + Clone + ProcessSend + 'static,
    ID: FnMut<(), Output = B> + Clone + ProcessSend + 'static,
    P: DistributedPipe<Item>, 
[src]

type Done = <<Fold<P, ID, F, B> as DistributedSink<Item>>::ReduceC as Reducer<<<Fold<P, ID, F, B> as DistributedSink<Item>>::ReduceB as Reducer<<<Fold<P, ID, F, B> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done>>::Done

type Pipe = P

type ReduceA = FolderSyncReducer<<P as DistributedPipe<Item>>::Output, FoldFolder<<P as DistributedPipe<Item>>::Output, ID, F, B, StepA>>

type ReduceB = FolderSyncReducer<<<Fold<P, ID, F, B> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done, FoldFolder<<P as DistributedPipe<Item>>::Output, ID, F, B, StepB>>

type ReduceC = FolderSyncReducer<<<Fold<P, ID, F, B> as DistributedSink<Item>>::ReduceB as Reducer<<<Fold<P, ID, F, B> as DistributedSink<Item>>::ReduceA as Reducer<<P as DistributedPipe<Item>>::Output>>::Done>>::Done, FoldFolder<<P as DistributedPipe<Item>>::Output, ID, F, B, StepB>>

impl<P, Item, T> DistributedSink<Item> for Collect<P, T> where
    P: DistributedPipe<Item>,
    T: FromDistributedStream<<P as DistributedPipe<Item>>::Output>, 
[src]

type Done = T

type Pipe = P

type ReduceA = <T as FromDistributedStream<<P as DistributedPipe<Item>>::Output>>::ReduceA

type ReduceB = <T as FromDistributedStream<<P as DistributedPipe<Item>>::Output>>::ReduceB

type ReduceC = <T as FromDistributedStream<<P as DistributedPipe<Item>>::Output>>::ReduceC

Loading content...