[][src]Struct amadeus::par_sink::ForEachReducer

pub struct ForEachReducer<Item, F>(_, _);

Trait Implementations

impl<Item, F> Clone for ForEachReducer<Item, F> where
    F: Clone
[src]

impl<'de, Item, F> Deserialize<'de> for ForEachReducer<Item, F> where
    F: Deserialize<'de>, 
[src]

impl<Item, F> Reducer<Item> for ForEachReducer<Item, F> where
    F: FnMut<(Item,), Output = ()>, 
[src]

type Done = ()

type Async = ForEachReducer<Item, F>

impl<Item, F> ReducerProcessSend<Item> for ForEachReducer<Item, F> where
    F: FnMut<(Item,), Output = ()>, 
[src]

type Done = ()

impl<Item, F> ReducerSend<Item> for ForEachReducer<Item, F> where
    F: FnMut<(Item,), Output = ()>, 
[src]

type Done = ()

impl<Item, F> Serialize for ForEachReducer<Item, F> where
    F: Serialize
[src]

impl<Item, F> Sink<Item> for ForEachReducer<Item, F> where
    F: FnMut<(Item,), Output = ()>, 
[src]

type Done = ()

impl<'pin, Item, F> Unpin for ForEachReducer<Item, F> where
    __ForEachReducer<'pin, Item, F>: Unpin
[src]

impl<Item, F> UnsafeUnpin for ForEachReducer<Item, F>[src]

Auto Trait Implementations

impl<Item, F> RefUnwindSafe for ForEachReducer<Item, F> where
    F: RefUnwindSafe

impl<Item, F> Send for ForEachReducer<Item, F> where
    F: Send

impl<Item, F> Sync for ForEachReducer<Item, F> where
    F: Sync

impl<Item, F> UnwindSafe for ForEachReducer<Item, F> where
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any + Serialize + Deserialize
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Deserialize for T where
    T: DeserializeOwned
[src]

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

impl<T> Serialize for T where
    T: Serialize + ?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<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>,