[][src]Struct futures_dagtask::Execute

pub struct Execute<T, I = u32, S = RandomState> { /* fields omitted */ }

Trait Implementations

impl<F, I, S> Stream for Execute<F, I, S> where
    F: Future + Unpin,
    I: CheckedAdd + One + Hash + PartialEq + Eq + PartialOrd + Clone + Unpin,
    S: BuildHasher + Unpin
[src]

type Item = (Index<I>, F::Output)

Values yielded by the stream.

Auto Trait Implementations

impl<T, I, S> Send for Execute<T, I, S> where
    I: Send,
    S: Send,
    T: Send

impl<T, I, S> Sync for Execute<T, I, S> where
    I: Send + Sync,
    S: Send,
    T: Send + Sync

impl<T, I, S> Unpin for Execute<T, I, S> where
    I: Unpin

impl<T, I = u32, S = RandomState> !UnwindSafe for Execute<T, I, S>

impl<T, I = u32, S = RandomState> !RefUnwindSafe for Execute<T, I, S>

Blanket Implementations

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 = !

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

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

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

impl<T> StreamExt for T where
    T: Stream + ?Sized
[src]