Trait puffin::fuzzer::stats_monitor::EventHandler

source ·
trait EventHandler: DynClone {
    // Required method
    fn process(&mut self, source: ClientId, msg: &str, stats: &Statistics);
}

Required Methods§

source

fn process(&mut self, source: ClientId, msg: &str, stats: &Statistics)

Implementors§

source§

impl EventHandler for JSONEventHandler

source§

impl<F> EventHandler for F
where F: FnMut(ClientId, &str, &Statistics) + Clone + 'static,