pub trait RpcServiceHandler: Send + Sync {
// Required method
fn call(
&self,
ctx: RpcCallContext,
method_id: MethodId,
payload: Value,
) -> HandlerFuture;
}pub trait RpcServiceHandler: Send + Sync {
// Required method
fn call(
&self,
ctx: RpcCallContext,
method_id: MethodId,
payload: Value,
) -> HandlerFuture;
}