Trait Filter

Source
pub trait Filter: Send {
    // Required method
    fn filter(&self) -> String;
}
Expand description

The Filter trait is implemented by all the filters.

Required Methods§

Source

fn filter(&self) -> String

Implementors§