[][src]Struct amadeus_core::par_sink::ReduceA3

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

Trait Implementations

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

impl<A: Reducer, B: Reducer, C: Reducer> Reducer for ReduceA3<A, B, C>[src]

type Item = Sum3<A::Item, B::Item, C::Item>

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

type Async = ReduceA3Async<A::Async, B::Async, C::Async>

impl<A: Reducer, B: Reducer, C: Reducer> ReducerProcessSend for ReduceA3<A, B, C> where
    A::Output: ProcessSend + 'static,
    B::Output: ProcessSend + 'static,
    C::Output: ProcessSend + 'static, 
[src]

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

impl<A: Reducer, B: Reducer, C: Reducer> ReducerSend for ReduceA3<A, B, C> where
    A::Output: Send + 'static,
    B::Output: Send + 'static,
    C::Output: Send + 'static, 
[src]

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

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

Auto Trait Implementations

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

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

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

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

impl<A, B, C> UnwindSafe for ReduceA3<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, U> Cast<U> for T where
    U: FromCast<T>, 

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

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

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