Type Definition specs::common::BoxedFuture [] [src]

type BoxedFuture<T> = Box<Future<Item = T, Error = BoxedErr> + Send + Sync + 'static>;

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