[][src]Struct amadeus::par_sink::GroupByReducerBAsync

pub struct GroupByReducerBAsync<R, T, U> where
    R: Reducer<U>, 
{ /* fields omitted */ }

Implementations

impl<R, T, U> GroupByReducerBAsync<R, T, U> where
    R: Reducer<U>, 
[src]

pub fn new(f: R) -> GroupByReducerBAsync<R, T, U>[src]

Constructs a new GroupByReducerBAsync.

Trait Implementations

impl<R, T, U> Sink<IndexMap<T, U, RandomState>> for GroupByReducerBAsync<R, T, U> where
    R: Reducer<U> + Clone,
    T: Eq + Hash
[src]

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

impl<'pin, R, T, U> Unpin for GroupByReducerBAsync<R, T, U> where
    R: Reducer<U>,
    __GroupByReducerBAsync<'pin, R, T, U>: Unpin
[src]

impl<R, T, U> UnsafeUnpin for GroupByReducerBAsync<R, T, U> where
    R: Reducer<U>, 
[src]

Auto Trait Implementations

impl<R, T, U> RefUnwindSafe for GroupByReducerBAsync<R, T, U> where
    R: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe,
    <R as Reducer<U>>::Async: RefUnwindSafe,
    <R as Reducer<U>>::Done: RefUnwindSafe

impl<R, T, U> Send for GroupByReducerBAsync<R, T, U> where
    R: Send,
    T: Send,
    U: Send,
    <R as Reducer<U>>::Async: Send,
    <R as Reducer<U>>::Done: Send

impl<R, T, U> Sync for GroupByReducerBAsync<R, T, U> where
    R: Sync,
    T: Sync,
    U: Sync,
    <R as Reducer<U>>::Async: Sync,
    <R as Reducer<U>>::Done: Sync

impl<R, T, U> UnwindSafe for GroupByReducerBAsync<R, T, U> where
    R: UnwindSafe,
    T: UnwindSafe,
    U: UnwindSafe,
    <R as Reducer<U>>::Async: UnwindSafe,
    <R as Reducer<U>>::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>,