Enum selectors::matching::CompoundSelectorMatchingResult
[−]
[src]
pub enum CompoundSelectorMatchingResult {
FullyMatched,
Matched {
next_combinator_offset: usize,
},
NotMatched,
}Whether a compound selector matched, and whether it was the rightmost selector inside the complex selector.
Variants
FullyMatchedThe selector was fully matched.
MatchedThe compound selector matched, and the next combinator offset is
next_combinator_offset.
Fields of Matched
next_combinator_offset: usize |
NotMatchedThe selector didn't match.