[][src]Struct amadeus_core::par_sink::ReduceC2

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

Implementations

impl<A, B> ReduceC2<A, B>[src]

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

Constructs a new ReduceC2.

Trait Implementations

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

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

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

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

type Async = ReduceC2Async<A::Async, B::Async, S0, S1>

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

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

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

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

Auto Trait Implementations

impl<A, B> RefUnwindSafe for ReduceC2<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for ReduceC2<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for ReduceC2<A, B> where
    A: Sync,
    B: Sync

impl<A, B> Unpin for ReduceC2<A, B> where
    A: Unpin,
    B: Unpin

impl<A, B> UnwindSafe for ReduceC2<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<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>,