[][src]Struct amadeus::par_sink::GroupByReducerA

pub struct GroupByReducerA<P, R, T, U>(_, _, _);

Implementations

impl<P, R, T, U> GroupByReducerA<P, R, T, U>[src]

pub fn new(f0: P, f1: R) -> GroupByReducerA<P, R, T, U>[src]

Constructs a new GroupByReducerA.

Trait Implementations

impl<P, R, T, U> Clone for GroupByReducerA<P, R, T, U> where
    P: Clone,
    R: Clone
[src]

impl<'de, P, R, T, U> Deserialize<'de> for GroupByReducerA<P, R, T, U> where
    P: Deserialize<'de>,
    R: Deserialize<'de>, 
[src]

impl<P, R, T, U> Reducer<(T, U)> for GroupByReducerA<P, R, T, U> where
    P: PipeTask<U>,
    R: Reducer<<P as PipeTask<U>>::Item> + Clone,
    T: Eq + Hash
[src]

type Output = HashMap<T, <R as Reducer<<P as PipeTask<U>>::Item>>::Output, RandomState>

type Async = GroupByReducerAAsync<<P as PipeTask<U>>::Async, R, <R as Reducer<<P as PipeTask<U>>::Item>>::Async, T, U>

impl<P, R, T, U> ReducerProcessSend<(T, U)> for GroupByReducerA<P, R, T, U> where
    P: PipeTask<U>,
    R: Reducer<<P as PipeTask<U>>::Item> + Clone,
    T: Eq + Hash + ProcessSend + 'static,
    <R as Reducer<<P as PipeTask<U>>::Item>>::Output: ProcessSend,
    <R as Reducer<<P as PipeTask<U>>::Item>>::Output: 'static, 
[src]

type Output = HashMap<T, <R as Reducer<<P as PipeTask<U>>::Item>>::Output, RandomState>

impl<P, R, T, U> ReducerSend<(T, U)> for GroupByReducerA<P, R, T, U> where
    P: PipeTask<U>,
    R: Reducer<<P as PipeTask<U>>::Item> + Clone,
    T: Eq + Hash + Send + 'static,
    <R as Reducer<<P as PipeTask<U>>::Item>>::Output: Send,
    <R as Reducer<<P as PipeTask<U>>::Item>>::Output: 'static, 
[src]

type Output = HashMap<T, <R as Reducer<<P as PipeTask<U>>::Item>>::Output, RandomState>

impl<P, R, T, U> Serialize for GroupByReducerA<P, R, T, U> where
    P: Serialize,
    R: Serialize
[src]

Auto Trait Implementations

impl<P, R, T, U> RefUnwindSafe for GroupByReducerA<P, R, T, U> where
    P: RefUnwindSafe,
    R: RefUnwindSafe

impl<P, R, T, U> Send for GroupByReducerA<P, R, T, U> where
    P: Send,
    R: Send

impl<P, R, T, U> Sync for GroupByReducerA<P, R, T, U> where
    P: Sync,
    R: Sync

impl<P, R, T, U> Unpin for GroupByReducerA<P, R, T, U> where
    P: Unpin,
    R: Unpin

impl<P, R, T, U> UnwindSafe for GroupByReducerA<P, R, T, U> where
    P: UnwindSafe,
    R: 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, U> Cast<U> for T where
    U: FromCast<T>, 

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