pub trait RpcMethod<T: Metadata>: Send + Sync + 'static { // Required method fn call(&self, params: Params, meta: T) -> BoxFuture<Result<Value>>; }
Asynchronous Method with Metadata
Call method