pub trait Filter: Send + Sync {
    fn filter(&self, record: &Record<'_>) -> bool;
}
Expand description

log filter

Required Methods

Implementors