pub trait ActivityNotifier: Send + Sync + 'static {
    // Required method
    fn active(&self);
}
Expand description

Notifies about RPC activity.

Required Methods§

source

fn active(&self)

Activity on RPC interface

Implementors§