Trait jsonrpc_core::RpcNotificationSimple[][src]

pub trait RpcNotificationSimple: Send + Sync + 'static {
    fn execute(&self, params: Params);
}
[]

Notification

Required methods

fn execute(&self, params: Params)[src][]

Execute notification

Implementors

impl<F: Send + Sync + 'static> RpcNotificationSimple for F where
    F: Fn(Params), 
[src][+]