pub trait LogFilter {
    // Required method
    fn wildcard_filter(&self) -> TopicFilter;
}
Expand description

Common filtering functions that are available for any event.

Required Methods§

source

fn wildcard_filter(&self) -> TopicFilter

Match any log parameters.

Implementors§