Struct style::stylist::StylistSelectorVisitor
source · struct StylistSelectorVisitor<'a> {
passed_rightmost_selector: bool,
needs_revalidation: &'a mut bool,
in_selector_list_of: SelectorListKind,
mapped_ids: &'a mut PrecomputedHashSet<Atom>,
nth_of_mapped_ids: &'a mut PrecomputedHashSet<Atom>,
attribute_dependencies: &'a mut PrecomputedHashSet<LocalName>,
nth_of_class_dependencies: &'a mut PrecomputedHashSet<Atom>,
nth_of_attribute_dependencies: &'a mut PrecomputedHashSet<LocalName>,
nth_of_custom_state_dependencies: &'a mut PrecomputedHashSet<AtomIdent>,
state_dependencies: &'a mut ElementState,
nth_of_state_dependencies: &'a mut ElementState,
document_state_dependencies: &'a mut DocumentState,
}
Expand description
A selector visitor implementation that collects all the state the Stylist cares about a selector.
Fields§
§passed_rightmost_selector: bool
Whether we’ve past the rightmost compound selector, not counting pseudo-elements.
needs_revalidation: &'a mut bool
Whether the selector needs revalidation for the style sharing cache.
in_selector_list_of: SelectorListKind
Flags for which selector list-containing components the visitor is inside of, if any
mapped_ids: &'a mut PrecomputedHashSet<Atom>
The filter with all the id’s getting referenced from rightmost selectors.
nth_of_mapped_ids: &'a mut PrecomputedHashSet<Atom>
The filter with the IDs getting referenced from the selector list of
:nth-child(… of
attribute_dependencies: &'a mut PrecomputedHashSet<LocalName>
The filter with the local names of attributes there are selectors for.
nth_of_class_dependencies: &'a mut PrecomputedHashSet<Atom>
The filter with the classes getting referenced from the selector list of
:nth-child(… of
nth_of_attribute_dependencies: &'a mut PrecomputedHashSet<LocalName>
The filter with the local names of attributes there are selectors for
within the selector list of :nth-child(… of
nth_of_custom_state_dependencies: &'a mut PrecomputedHashSet<AtomIdent>
The filter with the local names of custom states in selectors for
within the selector list of :nth-child(… of
state_dependencies: &'a mut ElementState
All the states selectors in the page reference.
nth_of_state_dependencies: &'a mut ElementState
All the state selectors in the page reference within the selector list
of :nth-child(… of
document_state_dependencies: &'a mut DocumentState
All the document states selectors in the page reference.
Implementations§
source§impl<'a> StylistSelectorVisitor<'a>
impl<'a> StylistSelectorVisitor<'a>
fn visit_nested_selector( &mut self, in_selector_list_of: SelectorListKind, selector: &Selector<SelectorImpl>, )
Trait Implementations§
source§impl<'a> SelectorVisitor for StylistSelectorVisitor<'a>
impl<'a> SelectorVisitor for StylistSelectorVisitor<'a>
§type Impl = SelectorImpl
type Impl = SelectorImpl
source§fn visit_complex_selector(&mut self, combinator: Option<Combinator>) -> bool
fn visit_complex_selector(&mut self, combinator: Option<Combinator>) -> bool
source§fn visit_selector_list(
&mut self,
list_kind: SelectorListKind,
list: &[Selector<Self::Impl>],
) -> bool
fn visit_selector_list( &mut self, list_kind: SelectorListKind, list: &[Selector<Self::Impl>], ) -> bool
source§fn visit_relative_selector_list(
&mut self,
list: &[RelativeSelector<Self::Impl>],
) -> bool
fn visit_relative_selector_list( &mut self, list: &[RelativeSelector<Self::Impl>], ) -> bool
source§fn visit_attribute_selector(
&mut self,
_ns: &NamespaceConstraint<&Namespace>,
name: &LocalName,
lower_name: &LocalName,
) -> bool
fn visit_attribute_selector( &mut self, _ns: &NamespaceConstraint<&Namespace>, name: &LocalName, lower_name: &LocalName, ) -> bool
source§fn visit_simple_selector(&mut self, s: &Component<SelectorImpl>) -> bool
fn visit_simple_selector(&mut self, s: &Component<SelectorImpl>) -> bool
Auto Trait Implementations§
impl<'a> Freeze for StylistSelectorVisitor<'a>
impl<'a> RefUnwindSafe for StylistSelectorVisitor<'a>
impl<'a> Send for StylistSelectorVisitor<'a>
impl<'a> Sync for StylistSelectorVisitor<'a>
impl<'a> Unpin for StylistSelectorVisitor<'a>
impl<'a> !UnwindSafe for StylistSelectorVisitor<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more