Trait jsonrpc_core::WrapFuture [−][src]
pub trait WrapFuture<T, E> {
fn into_future(self) -> BoxFuture<Result<T, E>>;
}Expand description
A future-conversion trait.
Required methods
fn into_future(self) -> BoxFuture<Result<T, E>>[src]
fn into_future(self) -> BoxFuture<Result<T, E>>[src]Convert itself into a boxed future.