[][src]Struct web_glitz::task::Sequence5Left

pub struct Sequence5Left<A, B, C, D, E, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>,
    C: GpuTask<Ec>,
    D: GpuTask<Ec>,
    E: GpuTask<Ec>, 
{ /* fields omitted */ }

Task for the sequence5_left combinator, waiting for five tasks to complete in order and only outputting the output of the left-most task.

See sequence5_left and [GpuTaskExt::sequence5_left].

Trait Implementations

impl<A, B, C, D, E, Ec> Clone for Sequence5Left<A, B, C, D, E, Ec> where
    A: GpuTask<Ec> + Clone,
    A::Output: Clone,
    B: GpuTask<Ec> + Clone,
    B::Output: Clone,
    C: GpuTask<Ec> + Clone,
    C::Output: Clone,
    D: GpuTask<Ec> + Clone,
    D::Output: Clone,
    E: GpuTask<Ec> + Clone,
    E::Output: Clone
[src]

impl<A, B, C, D, E, Ec> GpuTask<Ec> for Sequence5Left<A, B, C, D, E, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>,
    C: GpuTask<Ec>,
    D: GpuTask<Ec>,
    E: GpuTask<Ec>, 
[src]

type Output = A::Output

The type of output that results from this task finishing.

Auto Trait Implementations

impl<A, B, C, D, E, Ec> RefUnwindSafe for Sequence5Left<A, B, C, D, E, Ec> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe,
    D: RefUnwindSafe,
    E: RefUnwindSafe,
    Ec: RefUnwindSafe,
    <A as GpuTask<Ec>>::Output: RefUnwindSafe,
    <B as GpuTask<Ec>>::Output: RefUnwindSafe,
    <C as GpuTask<Ec>>::Output: RefUnwindSafe,
    <D as GpuTask<Ec>>::Output: RefUnwindSafe,
    <E as GpuTask<Ec>>::Output: RefUnwindSafe

impl<A, B, C, D, E, Ec> Send for Sequence5Left<A, B, C, D, E, Ec> where
    A: Send,
    B: Send,
    C: Send,
    D: Send,
    E: Send,
    Ec: Send,
    <A as GpuTask<Ec>>::Output: Send,
    <B as GpuTask<Ec>>::Output: Send,
    <C as GpuTask<Ec>>::Output: Send,
    <D as GpuTask<Ec>>::Output: Send,
    <E as GpuTask<Ec>>::Output: Send

impl<A, B, C, D, E, Ec> Sync for Sequence5Left<A, B, C, D, E, Ec> where
    A: Sync,
    B: Sync,
    C: Sync,
    D: Sync,
    E: Sync,
    Ec: Sync,
    <A as GpuTask<Ec>>::Output: Sync,
    <B as GpuTask<Ec>>::Output: Sync,
    <C as GpuTask<Ec>>::Output: Sync,
    <D as GpuTask<Ec>>::Output: Sync,
    <E as GpuTask<Ec>>::Output: Sync

impl<A, B, C, D, E, Ec> Unpin for Sequence5Left<A, B, C, D, E, Ec> where
    A: Unpin,
    B: Unpin,
    C: Unpin,
    D: Unpin,
    E: Unpin,
    Ec: Unpin,
    <A as GpuTask<Ec>>::Output: Unpin,
    <B as GpuTask<Ec>>::Output: Unpin,
    <C as GpuTask<Ec>>::Output: Unpin,
    <D as GpuTask<Ec>>::Output: Unpin,
    <E as GpuTask<Ec>>::Output: Unpin

impl<A, B, C, D, E, Ec> UnwindSafe for Sequence5Left<A, B, C, D, E, Ec> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    D: UnwindSafe,
    E: UnwindSafe,
    Ec: UnwindSafe,
    <A as GpuTask<Ec>>::Output: UnwindSafe,
    <B as GpuTask<Ec>>::Output: UnwindSafe,
    <C as GpuTask<Ec>>::Output: UnwindSafe,
    <D as GpuTask<Ec>>::Output: UnwindSafe,
    <E as GpuTask<Ec>>::Output: 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<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.