[][src]Struct amadeus::par_stream::LeftJoin

#[must_use]pub struct LeftJoin<P, K, V1, V2> { /* fields omitted */ }

Implementations

impl<P, K, V1, V2> LeftJoin<P, K, V1, V2>[src]

pub fn new(
    pipe: P,
    right: MultiMap<K, V2, RandomState>
) -> LeftJoin<P, K, V1, V2>
[src]

Trait Implementations

impl<P, K, V1, V2, Input> DistributedPipe<Input> for LeftJoin<P, K, V1, V2> where
    K: Eq + Hash + Clone + ProcessSend + 'static,
    P: DistributedPipe<Input, Output = (K, V1)>,
    V1: 'static,
    V2: Clone + ProcessSend + 'static, 
[src]

type Output = (K, V1, ImplIter<V2>)

type Task = <MapSync<P, LeftJoinClosure<K, V1, V2>> as DistributedPipe<Input>>::Task

impl<P, K, V1, V2> DistributedStream for LeftJoin<P, K, V1, V2> where
    K: Eq + Hash + Clone + ProcessSend + 'static,
    P: DistributedStream<Item = (K, V1)>,
    V1: 'static,
    V2: Clone + ProcessSend + 'static, 
[src]

type Item = (K, V1, ImplIter<V2>)

type Task = <MapSync<P, LeftJoinClosure<K, V1, V2>> as DistributedStream>::Task

impl<P, K, V1, V2, Input> ParallelPipe<Input> for LeftJoin<P, K, V1, V2> where
    K: Eq + Hash + Clone + Send + 'static,
    P: ParallelPipe<Input, Output = (K, V1)>,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

type Output = (K, V1, ImplIter<V2>)

type Task = <MapSync<P, LeftJoinClosure<K, V1, V2>> as ParallelPipe<Input>>::Task

impl<P, K, V1, V2> ParallelStream for LeftJoin<P, K, V1, V2> where
    K: Eq + Hash + Clone + Send + 'static,
    P: ParallelStream<Item = (K, V1)>,
    V1: 'static,
    V2: Clone + Send + 'static, 
[src]

type Item = (K, V1, ImplIter<V2>)

type Task = <MapSync<P, LeftJoinClosure<K, V1, V2>> as ParallelStream>::Task

impl<'pin, P, K, V1, V2> Unpin for LeftJoin<P, K, V1, V2> where
    __LeftJoin<'pin, P, K, V1, V2>: Unpin
[src]

impl<P, K, V1, V2> UnsafeUnpin for LeftJoin<P, K, V1, V2>[src]

Auto Trait Implementations

impl<P, K, V1, V2> RefUnwindSafe for LeftJoin<P, K, V1, V2> where
    K: RefUnwindSafe,
    P: RefUnwindSafe,
    V2: RefUnwindSafe

impl<P, K, V1, V2> Send for LeftJoin<P, K, V1, V2> where
    K: Send,
    P: Send,
    V2: Send

impl<P, K, V1, V2> Sync for LeftJoin<P, K, V1, V2> where
    K: Sync,
    P: Sync,
    V2: Sync

impl<P, K, V1, V2> UnwindSafe for LeftJoin<P, K, V1, V2> where
    K: UnwindSafe,
    P: UnwindSafe,
    V2: 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>,