[][src]Struct amadeus_core::par_sink::OptionReducer

pub struct OptionReducer<R>(_);

Trait Implementations

impl<R: Clone> Clone for OptionReducer<R>[src]

impl<R: Default> Default for OptionReducer<R>[src]

impl<'de, R> Deserialize<'de> for OptionReducer<R> where
    R: Deserialize<'de>, 
[src]

impl<R: Reducer<Item>, Item> Reducer<Option<Item>> for OptionReducer<R>[src]

type Output = Option<R::Output>

type Async = OptionReducerAsync<R::Async>

impl<R: Reducer<Item>, Item> ReducerProcessSend<Option<Item>> for OptionReducer<R> where
    R::Output: ProcessSend + 'static, 
[src]

type Output = Option<R::Output>

impl<R: Reducer<Item>, Item> ReducerSend<Option<Item>> for OptionReducer<R> where
    R::Output: Send + 'static, 
[src]

type Output = Option<R::Output>

impl<R> Serialize for OptionReducer<R> where
    R: Serialize
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for OptionReducer<R> where
    R: RefUnwindSafe

impl<R> Send for OptionReducer<R> where
    R: Send

impl<R> Sync for OptionReducer<R> where
    R: Sync

impl<R> Unpin for OptionReducer<R> where
    R: Unpin

impl<R> UnwindSafe for OptionReducer<R> where
    R: 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>,