[][src]Struct amadeus::par_sink::Histogram

#[must_use]pub struct Histogram<P> { /* fields omitted */ }

Implementations

impl<P> Histogram<P>[src]

pub fn new(pipe: P) -> Histogram<P>[src]

Constructs a new Histogram.

Trait Implementations

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>, Inter>

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

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>, Final>

impl<P, Item> ParallelSink<Item> for Histogram<P> where
    P: ParallelPipe<Item>,
    <P as ParallelPipe<Item>>::Output: Hash,
    <P as ParallelPipe<Item>>::Output: Ord,
    <P as ParallelPipe<Item>>::Output: Send,
    <P as ParallelPipe<Item>>::Output: 'static, 
[src]

type Done = <<Histogram<P> as ParallelSink<Item>>::ReduceC as Reducer<<<Histogram<P> as ParallelSink<Item>>::ReduceA as Reducer<<P as ParallelPipe<Item>>::Output>>::Done>>::Done

type Pipe = P

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

type ReduceC = FolderSyncReducer<<<Histogram<P> as ParallelSink<Item>>::ReduceA as Reducer<<P as ParallelPipe<Item>>::Output>>::Done, HistogramFolder<<P as ParallelPipe<Item>>::Output, StepB>, Final>

Auto Trait Implementations

impl<P> RefUnwindSafe for Histogram<P> where
    P: RefUnwindSafe

impl<P> Send for Histogram<P> where
    P: Send

impl<P> Sync for Histogram<P> where
    P: Sync

impl<P> Unpin for Histogram<P> where
    P: Unpin

impl<P> UnwindSafe for Histogram<P> where
    P: 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<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

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>,