[][src]Struct web_glitz::task::SequenceLeft

pub struct SequenceLeft<A, B, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>, 
{ /* fields omitted */ }

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

See sequence_left and [GpuTaskExt::sequence_left].

Trait Implementations

impl<A, B, Ec> GpuTask<Ec> for SequenceLeft<A, B, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>, 
[src]

type Output = A::Output

The type of output that results from this task finishing.

Auto Trait Implementations

impl<A, B, Ec> Send for SequenceLeft<A, B, Ec> where
    A: Send,
    B: Send,
    Ec: Send,
    <A as GpuTask<Ec>>::Output: Send,
    <B as GpuTask<Ec>>::Output: Send

impl<A, B, Ec> Unpin for SequenceLeft<A, B, Ec> where
    A: Unpin,
    B: Unpin,
    Ec: Unpin,
    <A as GpuTask<Ec>>::Output: Unpin,
    <B as GpuTask<Ec>>::Output: Unpin

impl<A, B, Ec> Sync for SequenceLeft<A, B, Ec> where
    A: Sync,
    B: Sync,
    Ec: Sync,
    <A as GpuTask<Ec>>::Output: Sync,
    <B as GpuTask<Ec>>::Output: Sync

impl<A, B, Ec> UnwindSafe for SequenceLeft<A, B, Ec> where
    A: UnwindSafe,
    B: UnwindSafe,
    Ec: UnwindSafe,
    <A as GpuTask<Ec>>::Output: UnwindSafe,
    <B as GpuTask<Ec>>::Output: UnwindSafe

impl<A, B, Ec> RefUnwindSafe for SequenceLeft<A, B, Ec> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    Ec: RefUnwindSafe,
    <A as GpuTask<Ec>>::Output: RefUnwindSafe,
    <B as GpuTask<Ec>>::Output: RefUnwindSafe

Blanket Implementations

impl<D, T> IntoBuffer<T> for D where
    D: Borrow<T> + 'static,
    T: Copy + 'static, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]