Trait RpcNotificationSimple
jsonrpc_core
pub trait RpcNotificationSimple: Send + Sync + 'static { fn execute(&self, params: Params); }
Notification
fn execute(&self, params: Params)
Execute notification
impl<F: Send + Sync + 'static> RpcNotificationSimple for F where F: Fn(Params),