[][src]Struct amadeus_core::dist_sink::FoldReducerA

pub struct FoldReducerA<A, ID, F, B>(_, _, _);

Trait Implementations

impl<'de, A, ID, F, B> Deserialize<'de> for FoldReducerA<A, ID, F, B> where
    ID: Deserialize<'de>,
    B: Deserialize<'de>,
    F: Deserialize<'de>, 
[src]

impl<A, ID, F, B> PinnedDrop for FoldReducerA<A, ID, F, B>[src]

impl<A, ID, F, B> Reducer for FoldReducerA<A, ID, F, B> where
    ID: FnMut() -> B + Clone,
    F: FnMut(B, Either<A, B>) -> B + Clone
[src]

type Item = A

type Output = B

type Async = Self

impl<A, ID, F, B> ReducerAsync for FoldReducerA<A, ID, F, B> where
    ID: FnMut() -> B + Clone,
    F: FnMut(B, Either<A, B>) -> B + Clone
[src]

type Item = A

type Output = B

impl<A, ID, F, B> ReducerProcessSend for FoldReducerA<A, ID, F, B> where
    A: 'static,
    ID: FnMut() -> B + Clone + ProcessSend,
    F: FnMut(B, Either<A, B>) -> B + Clone + ProcessSend,
    B: ProcessSend
[src]

type Output = B

impl<A, ID, F, B> ReducerSend for FoldReducerA<A, ID, F, B> where
    A: 'static,
    ID: FnMut() -> B + Clone + Send + 'static,
    F: FnMut(B, Either<A, B>) -> B + Clone + Send + 'static,
    B: Send + 'static, 
[src]

type Output = B

impl<A, ID, F, B> Serialize for FoldReducerA<A, ID, F, B> where
    ID: Serialize,
    B: Serialize,
    F: Serialize
[src]

impl<'pin, A, ID, F, B> Unpin for FoldReducerA<A, ID, F, B> where
    __FoldReducerA<'pin, A, ID, F, B>: Unpin
[src]

impl<A, ID, F, B> UnsafeUnpin for FoldReducerA<A, ID, F, B>[src]

Auto Trait Implementations

impl<A, ID, F, B> RefUnwindSafe for FoldReducerA<A, ID, F, B> where
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    ID: RefUnwindSafe

impl<A, ID, F, B> Send for FoldReducerA<A, ID, F, B> where
    B: Send,
    F: Send,
    ID: Send

impl<A, ID, F, B> Sync for FoldReducerA<A, ID, F, B> where
    B: Sync,
    F: Sync,
    ID: Sync

impl<A, ID, F, B> UnwindSafe for FoldReducerA<A, ID, F, B> where
    B: UnwindSafe,
    F: UnwindSafe,
    ID: 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, U> Cast<U> for T where
    U: FromCast<T>, 

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

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