[][src]Struct amadeus::par_sink::GroupByReducerAAsync

pub struct GroupByReducerAAsync<P, R, T, U> where
    P: Pipe<U>,
    R: Reducer<<P as Pipe<U>>::Output>, 
{ /* fields omitted */ }

Implementations

impl<P, R, T, U> GroupByReducerAAsync<P, R, T, U> where
    P: Pipe<U>,
    R: Reducer<<P as Pipe<U>>::Output>, 
[src]

pub fn new(pipe: P, factory: R) -> GroupByReducerAAsync<P, R, T, U>[src]

Constructs a new GroupByReducerAAsync.

Trait Implementations

impl<P, R, T, U> Sink<(T, U)> for GroupByReducerAAsync<P, R, T, U> where
    P: Pipe<U>,
    R: Reducer<<P as Pipe<U>>::Output> + Clone,
    T: Eq + Hash
[src]

type Done = IndexMap<T, <R as Reducer<<P as Pipe<U>>::Output>>::Done, RandomState>

impl<'pin, P, R, T, U> Unpin for GroupByReducerAAsync<P, R, T, U> where
    P: Pipe<U>,
    R: Reducer<<P as Pipe<U>>::Output>,
    __GroupByReducerAAsync<'pin, P, R, T, U>: Unpin
[src]

impl<P, R, T, U> UnsafeUnpin for GroupByReducerAAsync<P, R, T, U> where
    P: Pipe<U>,
    R: Reducer<<P as Pipe<U>>::Output>, 
[src]

Auto Trait Implementations

impl<P, R, T, U> RefUnwindSafe for GroupByReducerAAsync<P, R, T, U> where
    P: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe,
    <R as Reducer<<P as Pipe<U>>::Output>>::Async: RefUnwindSafe,
    <R as Reducer<<P as Pipe<U>>::Output>>::Done: RefUnwindSafe

impl<P, R, T, U> Send for GroupByReducerAAsync<P, R, T, U> where
    P: Send,
    R: Send,
    T: Send,
    U: Send,
    <R as Reducer<<P as Pipe<U>>::Output>>::Async: Send,
    <R as Reducer<<P as Pipe<U>>::Output>>::Done: Send

impl<P, R, T, U> Sync for GroupByReducerAAsync<P, R, T, U> where
    P: Sync,
    R: Sync,
    T: Sync,
    U: Sync,
    <R as Reducer<<P as Pipe<U>>::Output>>::Async: Sync,
    <R as Reducer<<P as Pipe<U>>::Output>>::Done: Sync

impl<P, R, T, U> UnwindSafe for GroupByReducerAAsync<P, R, T, U> where
    P: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe,
    U: UnwindSafe,
    <R as Reducer<<P as Pipe<U>>::Output>>::Async: UnwindSafe,
    <R as Reducer<<P as Pipe<U>>::Output>>::Done: 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<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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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