pub trait Build<T>: Sized {
    fn build(self) -> Box<dyn Future<Item = T, Error = Error> + Send>;
}

Required Methods

Implementations on Foreign Types

Implementors