Trait FuturesExt

Source
pub trait FuturesExt: Future {
    // Provided methods
    fn transpose(self) -> Transpose<Self> 
       where Self: Sized { ... }
    fn cloned(self) -> Cloned<Self> 
       where Self: Sized { ... }
}

Provided Methods§

Source

fn transpose(self) -> Transpose<Self>
where Self: Sized,

Source

fn cloned(self) -> Cloned<Self>
where Self: Sized,

Implementors§

Source§

impl<F: Future> FuturesExt for F