pub enum SelectorQueryChildren<'tree> {
Show 14 variants
AdjacentSiblingSelector(Box<AdjacentSiblingSelector<'tree>>),
AttributeSelector(Box<AttributeSelector<'tree>>),
ChildSelector(Box<ChildSelector<'tree>>),
ClassSelector(Box<ClassSelector<'tree>>),
DescendantSelector(Box<DescendantSelector<'tree>>),
IdSelector(Box<IdSelector<'tree>>),
NamespaceSelector(Box<NamespaceSelector<'tree>>),
NestingSelector(Box<NestingSelector<'tree>>),
PseudoClassSelector(Box<PseudoClassSelector<'tree>>),
PseudoElementSelector(Box<PseudoElementSelector<'tree>>),
SiblingSelector(Box<SiblingSelector<'tree>>),
StringValue(Box<StringValue<'tree>>),
TagName(Box<TagName<'tree>>),
UniversalSelector(Box<UniversalSelector<'tree>>),
}Variants§
AdjacentSiblingSelector(Box<AdjacentSiblingSelector<'tree>>)
AttributeSelector(Box<AttributeSelector<'tree>>)
ChildSelector(Box<ChildSelector<'tree>>)
ClassSelector(Box<ClassSelector<'tree>>)
DescendantSelector(Box<DescendantSelector<'tree>>)
IdSelector(Box<IdSelector<'tree>>)
NamespaceSelector(Box<NamespaceSelector<'tree>>)
NestingSelector(Box<NestingSelector<'tree>>)
PseudoClassSelector(Box<PseudoClassSelector<'tree>>)
PseudoElementSelector(Box<PseudoElementSelector<'tree>>)
SiblingSelector(Box<SiblingSelector<'tree>>)
StringValue(Box<StringValue<'tree>>)
TagName(Box<TagName<'tree>>)
UniversalSelector(Box<UniversalSelector<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for SelectorQueryChildren<'tree>
impl<'tree> Clone for SelectorQueryChildren<'tree>
Source§fn clone(&self) -> SelectorQueryChildren<'tree>
fn clone(&self) -> SelectorQueryChildren<'tree>
Returns a duplicate 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<'tree> Debug for SelectorQueryChildren<'tree>
impl<'tree> Debug for SelectorQueryChildren<'tree>
Source§impl<'tree> FromNode<'tree> for SelectorQueryChildren<'tree>
impl<'tree> FromNode<'tree> for SelectorQueryChildren<'tree>
Source§impl<'tree> PartialEq for SelectorQueryChildren<'tree>
impl<'tree> PartialEq for SelectorQueryChildren<'tree>
Source§fn eq(&self, other: &SelectorQueryChildren<'tree>) -> bool
fn eq(&self, other: &SelectorQueryChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for SelectorQueryChildren<'_>
impl Spanned for SelectorQueryChildren<'_>
impl<'tree> Eq for SelectorQueryChildren<'tree>
impl<'tree> StructuralPartialEq for SelectorQueryChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for SelectorQueryChildren<'tree>
impl<'tree> RefUnwindSafe for SelectorQueryChildren<'tree>
impl<'tree> Send for SelectorQueryChildren<'tree>
impl<'tree> Sync for SelectorQueryChildren<'tree>
impl<'tree> Unpin for SelectorQueryChildren<'tree>
impl<'tree> UnsafeUnpin for SelectorQueryChildren<'tree>
impl<'tree> UnwindSafe for SelectorQueryChildren<'tree>
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