[][src]Struct amadeus::par_sink::Min

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

Implementations

impl<P> Min<P>[src]

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

Constructs a new Min.

Trait Implementations

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> ParallelSink<Item> for Min<P> where
    P: ParallelPipe<Item>,
    <P as ParallelPipe<Item>>::Output: Ord,
    <P as ParallelPipe<Item>>::Output: Send,
    <P as ParallelPipe<Item>>::Output: 'static, 
[src]

type Done = <<Min<P> as ParallelSink<Item>>::ReduceC as Reducer<<<Min<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, Min<<P as ParallelPipe<Item>>::Output>>

type ReduceC = FolderSyncReducer<<<Min<P> as ParallelSink<Item>>::ReduceA as Reducer<<P as ParallelPipe<Item>>::Output>>::Done, Min<<P as ParallelPipe<Item>>::Output>>

Auto Trait Implementations

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

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

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

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

impl<P> UnwindSafe for Min<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>,