[][src]Struct amadeus_core::par_sink::AsyncTuple2

pub struct AsyncTuple2<Input, C0, C1> { /* fields omitted */ }

Trait Implementations

impl<Input, C0, C1> PinnedDrop for AsyncTuple2<Input, C0, C1>[src]

impl<Input, C0: Pipe<Input>, C1: Pipe<Input>> Pipe<Input> for AsyncTuple2<Input, C0, C1> where
    Input: Copy
[src]

type Output = Sum2<C0::Output, C1::Output>

impl<'pin, Input, C0, C1> Unpin for AsyncTuple2<Input, C0, C1> where
    __AsyncTuple2<'pin, Input, C0, C1>: Unpin
[src]

impl<Input, C0, C1> UnsafeUnpin for AsyncTuple2<Input, C0, C1>[src]

Auto Trait Implementations

impl<Input, C0, C1> RefUnwindSafe for AsyncTuple2<Input, C0, C1> where
    C0: RefUnwindSafe,
    C1: RefUnwindSafe,
    Input: RefUnwindSafe

impl<Input, C0, C1> Send for AsyncTuple2<Input, C0, C1> where
    C0: Send,
    C1: Send,
    Input: Send

impl<Input, C0, C1> Sync for AsyncTuple2<Input, C0, C1> where
    C0: Sync,
    C1: Sync,
    Input: Sync

impl<Input, C0, C1> UnwindSafe for AsyncTuple2<Input, C0, C1> where
    C0: UnwindSafe,
    C1: UnwindSafe,
    Input: 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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,