[][src]Struct amadeus::par_sink::Pipe

#[must_use]pub struct Pipe<A, B> { /* fields omitted */ }

Implementations

impl<A, B> Pipe<A, B>[src]

pub fn new(a: A, b: B) -> Pipe<A, B>[src]

Constructs a new Pipe.

Trait Implementations

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

type Item = <B as DistributedPipe<<A as DistributedPipe<Source>>::Item>>::Item

type Task = JoinTask<<A as DistributedPipe<Source>>::Task, <B as DistributedPipe<<A as DistributedPipe<Source>>::Item>>::Task>

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

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

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

type ReduceAFactory = <B as DistributedSink<<A as DistributedPipe<Source>>::Item>>::ReduceAFactory

type ReduceBFactory = <B as DistributedSink<<A as DistributedPipe<Source>>::Item>>::ReduceBFactory

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

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

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

impl<A, B, Source> ParallelPipe<Source> for Pipe<A, B> where
    A: ParallelPipe<Source>,
    B: ParallelPipe<<A as ParallelPipe<Source>>::Item>, 
[src]

type Item = <B as ParallelPipe<<A as ParallelPipe<Source>>::Item>>::Item

type Task = JoinTask<<A as ParallelPipe<Source>>::Task, <B as ParallelPipe<<A as ParallelPipe<Source>>::Item>>::Task>

impl<A, B, Source> ParallelSink<Source> for Pipe<A, B> where
    A: ParallelPipe<Source>,
    B: ParallelSink<<A as ParallelPipe<Source>>::Item>, 
[src]

type Output = <B as ParallelSink<<A as ParallelPipe<Source>>::Item>>::Output

type Pipe = Pipe<A, <B as ParallelSink<<A as ParallelPipe<Source>>::Item>>::Pipe>

type ReduceAFactory = <B as ParallelSink<<A as ParallelPipe<Source>>::Item>>::ReduceAFactory

type ReduceA = <B as ParallelSink<<A as ParallelPipe<Source>>::Item>>::ReduceA

type ReduceC = <B as ParallelSink<<A as ParallelPipe<Source>>::Item>>::ReduceC

Auto Trait Implementations

impl<A, B> RefUnwindSafe for Pipe<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for Pipe<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Pipe<A, B> where
    A: Sync,
    B: Sync

impl<A, B> Unpin for Pipe<A, B> where
    A: Unpin,
    B: Unpin

impl<A, B> UnwindSafe for Pipe<A, B> where
    A: UnwindSafe,
    B: 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<T, U> Cast<U> for T where
    U: FromCast<T>, 

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> 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[src]

type Meta = Concrete

Type of metadata for type.

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

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