pub type RpcFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, RpcError>> + Send + 'a>>;
A boxed future that is returned from the RpcClientT methods.
RpcClientT