pub trait RpcMethodSync: Send + Sync + 'static { // Required method fn call(&self, params: Params) -> BoxFuture<Result<Value>>; }
A synchronous or asynchronous method.
Call method