logo
pub trait Ext: Sealed {
    fn eval<I, S>(&self, tags: I) -> bool
   where
        S: AsRef<str>,
        I: IntoIterator<Item = S> + Clone
; }
Expand description

Extension of a TagOperation allowing to evaluate it.

Required Methods

Evaluates this TagOperation for the given tags.

Implementations on Foreign Types

Implementors