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

pub struct OptionReducer<R>(_);

Trait Implementations

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

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

impl<R> PinnedDrop for OptionReducer<R>[src]

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

type Item = Option<R::Item>

type Output = Option<R::Output>

type Async = OptionReducer<R::Async>

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

type Item = Option<R::Item>

type Output = Option<R::Output>

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

type Output = Option<R::Output>

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

type Output = Option<R::Output>

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

impl<'pin, R> Unpin for OptionReducer<R> where
    __OptionReducer<'pin, R>: Unpin
[src]

impl<R> UnsafeUnpin for OptionReducer<R>[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> 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, 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> + ?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>,