[][src]Struct amadeus::par_sink::ReduceC3Async

pub struct ReduceC3Async<A, B, C, S0, S1, S2> where
    A: Sink<S0>,
    B: Sink<S1>,
    C: Sink<S2>, 
{ /* fields omitted */ }

Trait Implementations

impl<A, B, C, S0, S1, S2> Sink<(S0, S1, S2)> for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: Sink<S0>,
    B: Sink<S1>,
    C: Sink<S2>, 
[src]

type Done = (<A as Sink<S0>>::Done, <B as Sink<S1>>::Done, <C as Sink<S2>>::Done)

impl<'pin, A, B, C, S0, S1, S2> Unpin for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: Sink<S0>,
    B: Sink<S1>,
    C: Sink<S2>,
    __ReduceC3Async<'pin, A, B, C, S0, S1, S2>: Unpin
[src]

impl<A, B, C, S0, S1, S2> UnsafeUnpin for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: Sink<S0>,
    B: Sink<S1>,
    C: Sink<S2>, 
[src]

Auto Trait Implementations

impl<A, B, C, S0, S1, S2> RefUnwindSafe for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    S0: RefUnwindSafe,
    S1: RefUnwindSafe,
    S2: RefUnwindSafe,
    <A as Sink<S0>>::Done: RefUnwindSafe,
    <B as Sink<S1>>::Done: RefUnwindSafe,
    <C as Sink<S2>>::Done: RefUnwindSafe

impl<A, B, C, S0, S1, S2> Send for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: Send,
    B: Send,
    C: Send,
    S0: Send,
    S1: Send,
    S2: Send,
    <A as Sink<S0>>::Done: Send,
    <B as Sink<S1>>::Done: Send,
    <C as Sink<S2>>::Done: Send

impl<A, B, C, S0, S1, S2> Sync for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: Sync,
    B: Sync,
    C: Sync,
    S0: Sync,
    S1: Sync,
    S2: Sync,
    <A as Sink<S0>>::Done: Sync,
    <B as Sink<S1>>::Done: Sync,
    <C as Sink<S2>>::Done: Sync

impl<A, B, C, S0, S1, S2> UnwindSafe for ReduceC3Async<A, B, C, S0, S1, S2> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    S0: UnwindSafe,
    S1: UnwindSafe,
    S2: UnwindSafe,
    <A as Sink<S0>>::Done: UnwindSafe,
    <B as Sink<S1>>::Done: UnwindSafe,
    <C as Sink<S2>>::Done: 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>,