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

The selector was fully matched.

The compound selector matched, and the next combinator offset is next_combinator_offset.

Fields of Matched

The selector didn't match.

Auto Trait Implementations