Enum selectors::relative_selector::filter::Entry
source · enum Entry {
Lookup,
HasFilter(Box<BloomFilter>),
}
Variants§
Lookup
Filter lookup happened once. Construction of the filter is expensive, so this is set when the element for subtree traversal is encountered.
HasFilter(Box<BloomFilter>)
Filter lookup happened more than once, and the filter for this element’s
subtree traversal is constructed. Could use special handlings for pseudo-classes
such as :hover
and :focus
, see Bug 1845503.
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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