[][src]Trait jsonrpc_core::RpcNotificationSimple

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

Notification

Required methods

fn execute(&self, params: Params)

Execute notification

Loading content...

Implementors

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

Loading content...