[][src]Struct amadeus::par_sink::AsyncTuple4

pub struct AsyncTuple4<Input, C0, C1, C2, C3> { /* fields omitted */ }

Trait Implementations

impl<Input, C0, C1, C2, C3> Pipe<Input> for AsyncTuple4<Input, C0, C1, C2, C3> where
    C0: Pipe<Input>,
    C1: Pipe<Input>,
    C2: Pipe<Input>,
    C3: Pipe<Input>,
    Input: Copy
[src]

type Output = Sum4<<C0 as Pipe<Input>>::Output, <C1 as Pipe<Input>>::Output, <C2 as Pipe<Input>>::Output, <C3 as Pipe<Input>>::Output>

impl<'pin, Input, C0, C1, C2, C3> Unpin for AsyncTuple4<Input, C0, C1, C2, C3> where
    __AsyncTuple4<'pin, Input, C0, C1, C2, C3>: Unpin
[src]

impl<Input, C0, C1, C2, C3> UnsafeUnpin for AsyncTuple4<Input, C0, C1, C2, C3>[src]

Auto Trait Implementations

impl<Input, C0, C1, C2, C3> RefUnwindSafe for AsyncTuple4<Input, C0, C1, C2, C3> where
    C0: RefUnwindSafe,
    C1: RefUnwindSafe,
    C2: RefUnwindSafe,
    C3: RefUnwindSafe,
    Input: RefUnwindSafe

impl<Input, C0, C1, C2, C3> Send for AsyncTuple4<Input, C0, C1, C2, C3> where
    C0: Send,
    C1: Send,
    C2: Send,
    C3: Send,
    Input: Send

impl<Input, C0, C1, C2, C3> Sync for AsyncTuple4<Input, C0, C1, C2, C3> where
    C0: Sync,
    C1: Sync,
    C2: Sync,
    C3: Sync,
    Input: Sync

impl<Input, C0, C1, C2, C3> UnwindSafe for AsyncTuple4<Input, C0, C1, C2, C3> where
    C0: UnwindSafe,
    C1: UnwindSafe,
    C2: UnwindSafe,
    C3: 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<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>,