pub trait Selectable
{
#[inline]
fn find_all_matching_child_nodes_depth_first_including_this_one<MatchUser: FnMut(&Rc<Node>) -> bool>(&self, selector: &OurSelector, match_user: &mut MatchUser) -> bool;
#[inline]
fn matches(&self, selector: &OurSelector) -> bool;
}
impl<'a> Selectable for &'a [RcDom]
{
#[inline]
fn find_all_matching_child_nodes_depth_first_including_this_one<MatchUser: FnMut(&Rc<Node>) -> bool>(&self, selector: &OurSelector, match_user: &mut MatchUser) -> bool
{
for rc_dom in self.iter()
{
if rc_dom.find_all_matching_child_nodes_depth_first_including_this_one(selector, match_user)
{
return true;
}
}
false
}
#[inline]
fn matches(&self, selector: &OurSelector) -> bool
{
for rc_dom in self.iter()
{
if rc_dom.matches(selector)
{
return true;
}
}
false
}
}
impl Selectable for RcDom
{
#[inline]
fn find_all_matching_child_nodes_depth_first_including_this_one<MatchUser: FnMut(&Rc<Node>) -> bool>(&self, selector: &OurSelector, match_user: &mut MatchUser) -> bool
{
self.document.find_all_matching_child_nodes_depth_first_including_this_one(selector, match_user)
}
#[inline]
fn matches(&self, selector: &OurSelector) -> bool
{
self.document.matches(selector)
}
}
impl<'a> Selectable for Rc<Node>
{
#[inline]
fn find_all_matching_child_nodes_depth_first_including_this_one<MatchUser: FnMut(&Rc<Node>) -> bool>(&self, selector: &OurSelector, match_user: &mut MatchUser) -> bool
{
if self.matches(selector)
{
let should_finish = match_user(self);
if should_finish
{
return true;
}
}
for child in self.children.borrow().iter()
{
if child.find_all_matching_child_nodes_depth_first_including_this_one(selector, match_user)
{
return true;
}
}
false
}
#[inline]
fn matches(&self, selector: &OurSelector) -> bool
{
match self.data
{
NodeData::Element { .. } => matches(selector, &ElementNode
{
node: self.clone(),
}),
_ => false,
}
}
}