Type Definition sc_transaction_pool_api::PoolFuture [−][src]
type PoolFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>;
Expand description
Typical future type used in transaction pool api.
type PoolFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>;
Typical future type used in transaction pool api.