[][src]Struct amadeus_core::par_sink::AsyncTuple8

pub struct AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> { /* fields omitted */ }

Trait Implementations

impl<Input, C0, C1, C2, C3, C4, C5, C6, C7> PinnedDrop for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7>[src]

impl<Input, C0: Pipe<Input>, C1: Pipe<Input>, C2: Pipe<Input>, C3: Pipe<Input>, C4: Pipe<Input>, C5: Pipe<Input>, C6: Pipe<Input>, C7: Pipe<Input>> Pipe<Input> for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> where
    Input: Copy
[src]

type Output = Sum8<C0::Output, C1::Output, C2::Output, C3::Output, C4::Output, C5::Output, C6::Output, C7::Output>

impl<'pin, Input, C0, C1, C2, C3, C4, C5, C6, C7> Unpin for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> where
    __AsyncTuple8<'pin, Input, C0, C1, C2, C3, C4, C5, C6, C7>: Unpin
[src]

impl<Input, C0, C1, C2, C3, C4, C5, C6, C7> UnsafeUnpin for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7>[src]

Auto Trait Implementations

impl<Input, C0, C1, C2, C3, C4, C5, C6, C7> RefUnwindSafe for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> where
    C0: RefUnwindSafe,
    C1: RefUnwindSafe,
    C2: RefUnwindSafe,
    C3: RefUnwindSafe,
    C4: RefUnwindSafe,
    C5: RefUnwindSafe,
    C6: RefUnwindSafe,
    C7: RefUnwindSafe,
    Input: RefUnwindSafe

impl<Input, C0, C1, C2, C3, C4, C5, C6, C7> Send for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> where
    C0: Send,
    C1: Send,
    C2: Send,
    C3: Send,
    C4: Send,
    C5: Send,
    C6: Send,
    C7: Send,
    Input: Send

impl<Input, C0, C1, C2, C3, C4, C5, C6, C7> Sync for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> where
    C0: Sync,
    C1: Sync,
    C2: Sync,
    C3: Sync,
    C4: Sync,
    C5: Sync,
    C6: Sync,
    C7: Sync,
    Input: Sync

impl<Input, C0, C1, C2, C3, C4, C5, C6, C7> UnwindSafe for AsyncTuple8<Input, C0, C1, C2, C3, C4, C5, C6, C7> where
    C0: UnwindSafe,
    C1: UnwindSafe,
    C2: UnwindSafe,
    C3: UnwindSafe,
    C4: UnwindSafe,
    C5: UnwindSafe,
    C6: UnwindSafe,
    C7: 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>,