pub trait CustomFilter: Send + Sync + 'static { // Required method fn enabled(&self, record: &Record<'_>) -> bool; }
自定义过滤函数