Type Definition specs::common::BoxedFuture

source ·
pub type BoxedFuture<T> = Box<dyn Future<Item = T, Error = BoxedErr> + Send + Sync + 'static>;
Expand description

A boxed, thread-safe future with T as item and BoxedErr as error type.