Struct style::invalidation::element::invalidation_map::InvalidationMap
source · pub struct InvalidationMap {
pub class_to_selector: IdOrClassDependencyMap,
pub id_to_selector: IdOrClassDependencyMap,
pub state_affecting_selectors: StateDependencyMap,
pub document_state_selectors: Vec<DocumentStateDependency>,
pub other_attribute_affecting_selectors: LocalNameDependencyMap,
pub custom_state_affecting_selectors: CustomStateDependencyMap,
}
Expand description
A map where we store invalidations.
This is slightly different to a SelectorMap, in the sense of that the same selector may appear multiple times.
In particular, we want to lookup as few things as possible to get the fewer selectors the better, so this looks up by id, class, or looks at the list of state/other attribute affecting selectors.
Fields§
§class_to_selector: IdOrClassDependencyMap
A map from a given class name to all the selectors with that class selector.
id_to_selector: IdOrClassDependencyMap
A map from a given id to all the selectors with that ID in the stylesheets currently applying to the document.
state_affecting_selectors: StateDependencyMap
A map of all the state dependencies.
document_state_selectors: Vec<DocumentStateDependency>
A list of document state dependencies in the rules we represent.
other_attribute_affecting_selectors: LocalNameDependencyMap
A map of other attribute affecting selectors.
custom_state_affecting_selectors: CustomStateDependencyMap
A map of CSS custom states
Implementations§
source§impl InvalidationMap
impl InvalidationMap
sourcepub fn shrink_if_needed(&mut self)
pub fn shrink_if_needed(&mut self)
Shrink the capacity of hash maps if needed.
Trait Implementations§
source§impl Clone for InvalidationMap
impl Clone for InvalidationMap
source§fn clone(&self) -> InvalidationMap
fn clone(&self) -> InvalidationMap
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InvalidationMap
impl Debug for InvalidationMap
source§impl MallocSizeOf for InvalidationMap
impl MallocSizeOf for InvalidationMap
source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Auto Trait Implementations§
impl Freeze for InvalidationMap
impl RefUnwindSafe for InvalidationMap
impl Send for InvalidationMap
impl Sync for InvalidationMap
impl Unpin for InvalidationMap
impl UnwindSafe for InvalidationMap
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert