[][src]Struct amadeus_core::par_sink::PushReducer

pub struct PushReducer<A, T = A>(_);

Implementations

impl<A, T> PushReducer<A, T>[src]

pub fn new() -> Self[src]

Constructs a new PushReducer.

Trait Implementations

impl<A, T> Clone for PushReducer<A, T>[src]

impl<A, T> Default for PushReducer<A, T>[src]

impl<'de, A, T> Deserialize<'de> for PushReducer<A, T>[src]

impl<A, T: Default + Extend<A>> Reducer<A> for PushReducer<A, T>[src]

type Output = T

type Async = PushReducerAsync<A, T>

impl<A, T: Default + Extend<A>> ReducerProcessSend<A> for PushReducer<A, T> where
    T: ProcessSend + 'static, 
[src]

type Output = T

impl<A, T: Default + Extend<A>> ReducerSend<A> for PushReducer<A, T> where
    T: Send + 'static, 
[src]

type Output = T

impl<A, T> Serialize for PushReducer<A, T>[src]

Auto Trait Implementations

impl<A, T> RefUnwindSafe for PushReducer<A, T>

impl<A, T> Send for PushReducer<A, T>

impl<A, T> Sync for PushReducer<A, T>

impl<A, T> Unpin for PushReducer<A, T>

impl<A, T> UnwindSafe for PushReducer<A, T>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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