[][src]Struct amadeus_core::dist_sink::NonzeroReducer

pub struct NonzeroReducer<R>(_);

Trait Implementations

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

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

impl<R, B> Reducer for NonzeroReducer<R> where
    R: Reducer<Output = Zeroable<B>>, 
[src]

type Item = R::Item

type Output = B

type Async = NonzeroReducer<R::Async>

impl<R, B> ReducerAsync for NonzeroReducer<R> where
    R: ReducerAsync<Output = Zeroable<B>>, 
[src]

type Item = R::Item

type Output = B

impl<R, B> ReducerProcessSend for NonzeroReducer<R> where
    R: Reducer<Output = Zeroable<B>> + ProcessSend,
    B: ProcessSend
[src]

type Output = B

impl<R, B> ReducerSend for NonzeroReducer<R> where
    R: Reducer<Output = Zeroable<B>> + Send + 'static,
    B: Send + 'static, 
[src]

type Output = B

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

impl<'pin, R> Unpin for NonzeroReducer<R> where
    __NonzeroReducer<'pin, R>: Unpin
[src]

impl<R> UnsafeUnpin for NonzeroReducer<R>[src]

Auto Trait Implementations

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

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

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

impl<R> UnwindSafe for NonzeroReducer<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> + '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>,