[][src]Struct web_glitz::task::Join3

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

Task for the join3 combinator, waiting for three tasks to complete in no particular order.

See join3 and [GpuTaskExt::join3].

Trait Implementations

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

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

type Output = (A::Output, B::Output, C::Output)

The type of output that results from this task finishing.

Auto Trait Implementations

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

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

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

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

impl<A, B, C, Ec> UnwindSafe for Join3<A, B, C, Ec> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe,
    Ec: UnwindSafe,
    <A as GpuTask<Ec>>::Output: UnwindSafe,
    <B as GpuTask<Ec>>::Output: UnwindSafe,
    <C 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.