logo
pub trait Recorder<Event> {
    fn record(&self, event: &Event);
}
Expand description

Recorder that can record Swarm and protocol events.

Required methods

Record the given event.

Implementors