Type Definition libutils::LocalBoxFuture
[−]
[src]
type LocalBoxFuture<T, E> = Box<Future<Item = T, Error = E>>;
A trait object for futures, so we can return them.