[][src]Struct amadeus_core::par_sink::ReduceA1

pub struct ReduceA1<A> { /* fields omitted */ }

Implementations

impl<A> ReduceA1<A>[src]

pub fn new(A: A) -> Self[src]

Constructs a new ReduceA1.

Trait Implementations

impl<A: Clone> Clone for ReduceA1<A>[src]

impl<'de, A> Deserialize<'de> for ReduceA1<A> where
    A: Deserialize<'de>, 
[src]

impl<A: Reducer<S0>, S0> Reducer<Sum1<S0>> for ReduceA1<A>[src]

type Done = (A::Done,)

type Async = ReduceA1Async<A::Async, S0>

impl<A: Reducer<S0>, S0> ReducerProcessSend<Sum1<S0>> for ReduceA1<A> where
    A::Done: ProcessSend + 'static, 
[src]

type Done = (A::Done,)

impl<A: Reducer<S0>, S0> ReducerSend<Sum1<S0>> for ReduceA1<A> where
    A::Done: Send + 'static, 
[src]

type Done = (A::Done,)

impl<A> Serialize for ReduceA1<A> where
    A: Serialize
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for ReduceA1<A> where
    A: RefUnwindSafe

impl<A> Send for ReduceA1<A> where
    A: Send

impl<A> Sync for ReduceA1<A> where
    A: Sync

impl<A> Unpin for ReduceA1<A> where
    A: Unpin

impl<A> UnwindSafe for ReduceA1<A> where
    A: 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> 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>,