[][src]Struct web_glitz::task::JoinIter

pub struct JoinIter<T, Ec> { /* fields omitted */ }

Task for the join_iter combinator, waiting for all tasks in the iterator to complete in no particular order, outputting ().

See join_iter.

Trait Implementations

impl<T, Ec> Clone for JoinIter<T, Ec> where
    T: Clone
[src]

impl<T, Ec> GpuTask<Ec> for JoinIter<T, Ec> where
    T: GpuTask<Ec, Output = ()>, 
[src]

type Output = ()

The type of output that results from this task finishing.

Auto Trait Implementations

impl<T, Ec> RefUnwindSafe for JoinIter<T, Ec> where
    Ec: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, Ec> Send for JoinIter<T, Ec> where
    Ec: Send,
    T: Send

impl<T, Ec> Sync for JoinIter<T, Ec> where
    Ec: Sync,
    T: Sync

impl<T, Ec> Unpin for JoinIter<T, Ec> where
    Ec: Unpin,
    T: Unpin

impl<T, Ec> UnwindSafe for JoinIter<T, Ec> where
    Ec: UnwindSafe,
    T: 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.