Type Definition BoxFuture
jsonrpc_core
type BoxFuture<T> = Box<dyn Future<Item = T, Error = Error> + Send>;
A Future trait object.
Future