pub trait RpcNotification<T: Metadata>: Send + Sync + 'static {
    fn execute(&self, params: Params, meta: T);
}
Expand description

Notification with Metadata

Required Methods

Execute notification

Implementors