pub trait AttributeFilter: Send + Sync {
    fn filter<'a>(&self, _: &str, _: &str, _: &'a str) -> Option<Cow<'a, str>>;
}

Required Methods

Trait Implementations

Formats the value using the given formatter. Read more

Implementors