[][src]Struct amadeus::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) -> ReduceC2<A, B>[src]

Constructs a new ReduceC2.

Trait Implementations

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

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

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

type Done = (<A as Reducer<S0>>::Done, <B as Reducer<S1>>::Done)

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

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

type Done = (<A as ReducerProcessSend<S0>>::Done, <B as ReducerProcessSend<S1>>::Done)

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

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

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> Any for T where
    T: Any + Serialize + Deserialize
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Deserialize for T where
    T: DeserializeOwned
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[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> Serialize for T where
    T: Serialize + ?Sized
[src]

impl<T> Serialize for T where
    T: Serialize + ?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<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>,