[][src]Enum amadeus::par_sink::ResultReducerAsync

pub enum ResultReducerAsync<R, E> {
    Ok(R),
    Err(Option<E>),
}

Variants

Ok(R)
Err(Option<E>)

Trait Implementations

impl<R, E, Item> Sink<Result<Item, E>> for ResultReducerAsync<R, E> where
    R: Sink<Item>, 
[src]

type Done = Result<<R as Sink<Item>>::Done, E>

impl<'pin, R, E> Unpin for ResultReducerAsync<R, E> where
    __ResultReducerAsync<'pin, R, E>: Unpin
[src]

impl<R, E> UnsafeUnpin for ResultReducerAsync<R, E>[src]

Auto Trait Implementations

impl<R, E> RefUnwindSafe for ResultReducerAsync<R, E> where
    E: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, E> Send for ResultReducerAsync<R, E> where
    E: Send,
    R: Send

impl<R, E> Sync for ResultReducerAsync<R, E> where
    E: Sync,
    R: Sync

impl<R, E> UnwindSafe for ResultReducerAsync<R, E> where
    E: UnwindSafe,
    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<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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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