pub trait LogHandler: Send + Sync {
// Required method
fn handle(&self, entry: &LogEntry);
}Expand description
Handler trait for processing log entries
pub trait LogHandler: Send + Sync {
// Required method
fn handle(&self, entry: &LogEntry);
}Handler trait for processing log entries