pub trait CollectionFilter: JSTraceable {
    // Required method
    fn filter<'a>(&self, elem: &'a Element, root: &'a Node) -> bool;
}

Required Methods§

source

fn filter<'a>(&self, elem: &'a Element, root: &'a Node) -> bool

Implementors§