Struct selectors::parser::Selector[][src]

pub struct Selector<Impl: SelectorImpl>(_);

A Selector stores a sequence of simple selectors and combinators. The iterator classes allow callers to iterate at either the raw sequence level or at the level of sequences of simple selectors separated by combinators. Most callers want the higher-level iterator.

We store compound selectors internally right-to-left (in matching order). Additionally, we invert the order of top-level compound selectors so that each one matches left-to-right. This is because matching namespace, local name, id, and class are all relatively cheap, whereas matching pseudo-classes might be expensive (depending on the pseudo-class). Since authors tend to put the pseudo-classes on the right, it's faster to start matching on the left.

This reordering doesn't change the semantics of selector matching, and we handle it in to_css to make it invisible to serialization.

Methods

impl<Impl: SelectorImpl> Selector<Impl>
[src]

Whether this selector (pseudo-element part excluded) matches every element.

Used for "pre-computed" pseudo-elements in components/style/stylist.rs

Important traits for SelectorIter<'a, Impl>

Returns an iterator over this selector in matching order (right-to-left). When a combinator is reached, the iterator will return None, and next_sequence() may be called to continue to the next sequence.

Whether this selector is a featureless :host selector, with no combinators to the left, and optionally has a pseudo-element to the right.

Important traits for SelectorIter<'a, Impl>

Returns an iterator over this selector in matching order (right-to-left), skipping the rightmost |offset| Components.

Returns the combinator at index index (zero-indexed from the right), or panics if the component is not a combinator.

Returns an iterator over the entire sequence of simple selectors and combinators, in matching order (from right to left).

Returns the combinator at index index (zero-indexed from the left), or panics if the component is not a combinator.

Returns an iterator over the sequence of simple selectors and combinators, in parse order (from left to right), starting from offset.

Creates a Selector from a vec of Components, specified in parse order. Used in tests.

Returns count of simple selectors and combinators in the Selector.

Returns the address on the heap of the ThinArc for memory reporting.

impl<Impl: SelectorImpl> Selector<Impl>
[src]

Parse a selector, without any pseudo-element.

Trait Implementations

impl<Impl: SelectorImpl> Visit for Selector<Impl> where
    Impl::NonTSPseudoClass: Visit<Impl = Impl>, 
[src]

The type parameter of selector component types.

Traverse selector components inside self. Read more

impl<Impl: Clone + SelectorImpl> Clone for Selector<Impl>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Impl: Eq + SelectorImpl> Eq for Selector<Impl>
[src]

impl<Impl: PartialEq + SelectorImpl> PartialEq for Selector<Impl>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Impl: SelectorImpl> Debug for Selector<Impl>
[src]

Formats the value using the given formatter. Read more

impl<Impl: SelectorImpl> ToCss for Selector<Impl>
[src]

Serialize self in CSS syntax, writing to dest.

Serialize self in CSS syntax and return a string. Read more

Auto Trait Implementations

impl<Impl> Send for Selector<Impl> where
    <Impl as SelectorImpl>::AttrValue: Send + Sync,
    <Impl as SelectorImpl>::ClassName: Send + Sync,
    <Impl as SelectorImpl>::Identifier: Send + Sync,
    <Impl as SelectorImpl>::LocalName: Send + Sync,
    <Impl as SelectorImpl>::NamespacePrefix: Send + Sync,
    <Impl as SelectorImpl>::NamespaceUrl: Send + Sync,
    <Impl as SelectorImpl>::NonTSPseudoClass: Send + Sync,
    <Impl as SelectorImpl>::PseudoElement: Send + Sync

impl<Impl> Sync for Selector<Impl> where
    <Impl as SelectorImpl>::AttrValue: Send + Sync,
    <Impl as SelectorImpl>::ClassName: Send + Sync,
    <Impl as SelectorImpl>::Identifier: Send + Sync,
    <Impl as SelectorImpl>::LocalName: Send + Sync,
    <Impl as SelectorImpl>::NamespacePrefix: Send + Sync,
    <Impl as SelectorImpl>::NamespaceUrl: Send + Sync,
    <Impl as SelectorImpl>::NonTSPseudoClass: Send + Sync,
    <Impl as SelectorImpl>::PseudoElement: Send + Sync