Type Alias client::rpc::CoreBoxFuture

source ·
pub type CoreBoxFuture<T> = Pin<Box<dyn Future<Output = Result<T, Error>> + Send>>;

Aliased Type§

struct CoreBoxFuture<T> { /* private fields */ }

Trait Implementations§

source§

impl<T: Send + Sync + 'static> Into<Pin<Box<dyn Future<Output = Result<T, Error>> + Send>>> for CoreBoxFuture<T>

source§

fn into(x: Self) -> BoxFuture<JsonRpcResult<T>>