[][src]Struct amadeus_core::par_sink::ReduceC3

pub struct ReduceC3<A, B, C> { /* fields omitted */ }

Implementations

impl<A, B, C> ReduceC3<A, B, C>[src]

pub fn new(A: A, B: B, C: C) -> Self[src]

Constructs a new ReduceC3.

Trait Implementations

impl<A: Clone, B: Clone, C: Clone> Clone for ReduceC3<A, B, C>[src]

impl<'de, A, B, C> Deserialize<'de> for ReduceC3<A, B, C> where
    A: Deserialize<'de>,
    B: Deserialize<'de>,
    C: Deserialize<'de>, 
[src]

impl<A: Reducer<S0>, B: Reducer<S1>, C: Reducer<S2>, S0, S1, S2> Reducer<(S0, S1, S2)> for ReduceC3<A, B, C>[src]

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

type Async = ReduceC3Async<A::Async, B::Async, C::Async, S0, S1, S2>

impl<A: ReducerProcessSend<S0>, B: ReducerProcessSend<S1>, C: ReducerProcessSend<S2>, S0, S1, S2> ReducerProcessSend<(S0, S1, S2)> for ReduceC3<A, B, C>[src]

impl<A: ReducerSend<S0>, B: ReducerSend<S1>, C: ReducerSend<S2>, S0, S1, S2> ReducerSend<(S0, S1, S2)> for ReduceC3<A, B, C>[src]

type Output = (<A as ReducerSend<S0>>::Output, <B as ReducerSend<S1>>::Output, <C as ReducerSend<S2>>::Output)

impl<A, B, C> Serialize for ReduceC3<A, B, C> where
    A: Serialize,
    B: Serialize,
    C: Serialize
[src]

Auto Trait Implementations

impl<A, B, C> RefUnwindSafe for ReduceC3<A, B, C> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe

impl<A, B, C> Send for ReduceC3<A, B, C> where
    A: Send,
    B: Send,
    C: Send

impl<A, B, C> Sync for ReduceC3<A, B, C> where
    A: Sync,
    B: Sync,
    C: Sync

impl<A, B, C> Unpin for ReduceC3<A, B, C> where
    A: Unpin,
    B: Unpin,
    C: Unpin

impl<A, B, C> UnwindSafe for ReduceC3<A, B, C> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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