Type Definition jsonrpc_core::BoxFuture[][src]

pub type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>;
Expand description

A Future trait object.

Trait Implementations

Convert itself into a boxed future.