pub trait LogListener: Send + Sync { // Required method fn on_log(&mut self, log: Log); }
A trait for handling log entries.