[][src]Struct amadeus_core::par_sink::ReduceA6

pub struct ReduceA6<A, B, C, D, E, F> { /* fields omitted */ }

Trait Implementations

impl<'de, A, B, C, D, E, F> Deserialize<'de> for ReduceA6<A, B, C, D, E, F> where
    A: Deserialize<'de>,
    B: Deserialize<'de>,
    C: Deserialize<'de>,
    D: Deserialize<'de>,
    E: Deserialize<'de>,
    F: Deserialize<'de>, 
[src]

impl<A: Reducer, B: Reducer, C: Reducer, D: Reducer, E: Reducer, F: Reducer> Reducer for ReduceA6<A, B, C, D, E, F>[src]

type Item = Sum6<A::Item, B::Item, C::Item, D::Item, E::Item, F::Item>

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output, F::Output)

type Async = ReduceA6Async<A::Async, B::Async, C::Async, D::Async, E::Async, F::Async>

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

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output, F::Output)

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

type Output = (A::Output, B::Output, C::Output, D::Output, E::Output, F::Output)

impl<A, B, C, D, E, F> Serialize for ReduceA6<A, B, C, D, E, F> where
    A: Serialize,
    B: Serialize,
    C: Serialize,
    D: Serialize,
    E: Serialize,
    F: Serialize
[src]

Auto Trait Implementations

impl<A, B, C, D, E, F> RefUnwindSafe for ReduceA6<A, B, C, D, E, F> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    F: RefUnwindSafe

impl<A, B, C, D, E, F> Send for ReduceA6<A, B, C, D, E, F> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    E: Send,
    F: Send

impl<A, B, C, D, E, F> Sync for ReduceA6<A, B, C, D, E, F> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    E: Sync,
    F: Sync

impl<A, B, C, D, E, F> Unpin for ReduceA6<A, B, C, D, E, F> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    F: Unpin

impl<A, B, C, D, E, F> UnwindSafe for ReduceA6<A, B, C, D, E, F> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    E: UnwindSafe,
    F: 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>,