[][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, Input> DistributedPipe<Input> for Pipe<A, B> where
    A: DistributedPipe<Input>,
    B: DistributedPipe<<A as DistributedPipe<Input>>::Output>, 
[src]

type Output = <B as DistributedPipe<<A as DistributedPipe<Input>>::Output>>::Output

type Task = JoinTask<<A as DistributedPipe<Input>>::Task, <B as DistributedPipe<<A as DistributedPipe<Input>>::Output>>::Task>

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> DistributedStream for Pipe<A, B> where
    A: DistributedStream,
    B: DistributedPipe<<A as DistributedStream>::Item>, 
[src]

type Item = <B as DistributedPipe<<A as DistributedStream>::Item>>::Output

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

impl<A, B, Input> ParallelPipe<Input> for Pipe<A, B> where
    A: ParallelPipe<Input>,
    B: ParallelPipe<<A as ParallelPipe<Input>>::Output>, 
[src]

type Output = <B as ParallelPipe<<A as ParallelPipe<Input>>::Output>>::Output

type Task = JoinTask<<A as ParallelPipe<Input>>::Task, <B as ParallelPipe<<A as ParallelPipe<Input>>::Output>>::Task>

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

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

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

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

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

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

type Item = <B as ParallelPipe<<A as ParallelStream>::Item>>::Output

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

impl<'pin, A, B> Unpin for Pipe<A, B> where
    __Pipe<'pin, A, B>: Unpin
[src]

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

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> 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<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> IntoDistributedStream for T where
    T: DistributedStream
[src]

type DistStream = T

type Item = <T as DistributedStream>::Item

impl<T> IntoParallelStream for T where
    T: ParallelStream
[src]

type ParStream = T

type Item = <T as ParallelStream>::Item

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