pub type BoxedFuture<T, E> = Box<dyn Future<Item = T, Error = E>>;
Expand description

A type alias for a boxed future.