pub trait RpcMethod<T: Metadata>: Send + Sync + 'static {
    fn call(&self, params: Params, meta: T) -> BoxFuture<Value>;
}
Expand description

Asynchronous Method with Metadata

Required Methods

Call method

Implementors