vector_common::finalizer

Trait FuturesSet

Source
pub trait FuturesSet<Fut: Future>: Stream<Item = Fut::Output> {
    // Required methods
    fn is_empty(&self) -> bool;
    fn push(&mut self, future: Fut);
}

Required Methods§

Source

fn is_empty(&self) -> bool

Source

fn push(&mut self, future: Fut)

Implementations on Foreign Types§

Source§

impl<Fut: Future> FuturesSet<Fut> for FuturesOrdered<Fut>

Source§

fn is_empty(&self) -> bool

Source§

fn push(&mut self, future: Fut)

Source§

impl<Fut: Future> FuturesSet<Fut> for FuturesUnordered<Fut>

Source§

fn is_empty(&self) -> bool

Source§

fn push(&mut self, future: Fut)

Implementors§