[][src]Struct amadeus_core::par_sink::AsyncTuple3

pub struct AsyncTuple3<Source, C0, C1, C2> { /* fields omitted */ }

Trait Implementations

impl<Source, C0, C1, C2> PinnedDrop for AsyncTuple3<Source, C0, C1, C2>[src]

impl<Source, C0: PipeTaskAsync<Source>, C1: PipeTaskAsync<Source>, C2: PipeTaskAsync<Source>> PipeTaskAsync<Source> for AsyncTuple3<Source, C0, C1, C2> where
    Source: Copy
[src]

type Item = Sum3<C0::Item, C1::Item, C2::Item>

impl<'pin, Source, C0, C1, C2> Unpin for AsyncTuple3<Source, C0, C1, C2> where
    __AsyncTuple3<'pin, Source, C0, C1, C2>: Unpin
[src]

impl<Source, C0, C1, C2> UnsafeUnpin for AsyncTuple3<Source, C0, C1, C2>[src]

Auto Trait Implementations

impl<Source, C0, C1, C2> RefUnwindSafe for AsyncTuple3<Source, C0, C1, C2> where
    C0: RefUnwindSafe,
    C1: RefUnwindSafe,
    C2: RefUnwindSafe,
    Source: RefUnwindSafe

impl<Source, C0, C1, C2> Send for AsyncTuple3<Source, C0, C1, C2> where
    C0: Send,
    C1: Send,
    C2: Send,
    Source: Send

impl<Source, C0, C1, C2> Sync for AsyncTuple3<Source, C0, C1, C2> where
    C0: Sync,
    C1: Sync,
    C2: Sync,
    Source: Sync

impl<Source, C0, C1, C2> UnwindSafe for AsyncTuple3<Source, C0, C1, C2> where
    C0: UnwindSafe,
    C1: UnwindSafe,
    C2: UnwindSafe,
    Source: 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> 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, 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>,