[][src]Struct amadeus_core::par_sink::ReduceC4Async

pub struct ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: ReducerAsync<S0>,
    B: ReducerAsync<S1>,
    C: ReducerAsync<S2>,
    D: ReducerAsync<S3>, 
{ /* fields omitted */ }

Trait Implementations

impl<A, B, C, D, S0, S1, S2, S3> PinnedDrop for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: ReducerAsync<S0>,
    B: ReducerAsync<S1>,
    C: ReducerAsync<S2>,
    D: ReducerAsync<S3>, 
[src]

impl<A: ReducerAsync<S0>, B: ReducerAsync<S1>, C: ReducerAsync<S2>, D: ReducerAsync<S3>, S0, S1, S2, S3> ReducerAsync<(S0, S1, S2, S3)> for ReduceC4Async<A, B, C, D, S0, S1, S2, S3>[src]

type Output = (A::Output, B::Output, C::Output, D::Output)

impl<A: ReducerAsync<S0>, B: ReducerAsync<S1>, C: ReducerAsync<S2>, D: ReducerAsync<S3>, S0, S1, S2, S3> Sink<(S0, S1, S2, S3)> for ReduceC4Async<A, B, C, D, S0, S1, S2, S3>[src]

impl<'pin, A, B, C, D, S0, S1, S2, S3> Unpin for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: ReducerAsync<S0>,
    B: ReducerAsync<S1>,
    C: ReducerAsync<S2>,
    D: ReducerAsync<S3>,
    __ReduceC4Async<'pin, A, B, C, D, S0, S1, S2, S3>: Unpin
[src]

impl<A, B, C, D, S0, S1, S2, S3> UnsafeUnpin for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: ReducerAsync<S0>,
    B: ReducerAsync<S1>,
    C: ReducerAsync<S2>,
    D: ReducerAsync<S3>, 
[src]

Auto Trait Implementations

impl<A, B, C, D, S0, S1, S2, S3> RefUnwindSafe for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    S0: RefUnwindSafe,
    S1: RefUnwindSafe,
    S2: RefUnwindSafe,
    S3: RefUnwindSafe

impl<A, B, C, D, S0, S1, S2, S3> Send for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    S0: Send,
    S1: Send,
    S2: Send,
    S3: Send

impl<A, B, C, D, S0, S1, S2, S3> Sync for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    S0: Sync,
    S1: Sync,
    S2: Sync,
    S3: Sync

impl<A, B, C, D, S0, S1, S2, S3> UnwindSafe for ReduceC4Async<A, B, C, D, S0, S1, S2, S3> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    S0: UnwindSafe,
    S1: UnwindSafe,
    S2: UnwindSafe,
    S3: 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> From<T> for T[src]

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,