pub trait TextFilter {
    fn filter<S: AsRef<str>>(&self, text: S) -> String;
}

Required Methods

Implementors