pub enum NamespaceSelectorChildren<'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 NamespaceSelectorChildren<'tree>
impl<'tree> Clone for NamespaceSelectorChildren<'tree>
Source§fn clone(&self) -> NamespaceSelectorChildren<'tree>
fn clone(&self) -> NamespaceSelectorChildren<'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 NamespaceSelectorChildren<'tree>
impl<'tree> Debug for NamespaceSelectorChildren<'tree>
Source§impl<'tree> FromNode<'tree> for NamespaceSelectorChildren<'tree>
impl<'tree> FromNode<'tree> for NamespaceSelectorChildren<'tree>
Source§impl<'tree> PartialEq for NamespaceSelectorChildren<'tree>
impl<'tree> PartialEq for NamespaceSelectorChildren<'tree>
Source§fn eq(&self, other: &NamespaceSelectorChildren<'tree>) -> bool
fn eq(&self, other: &NamespaceSelectorChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for NamespaceSelectorChildren<'_>
impl Spanned for NamespaceSelectorChildren<'_>
impl<'tree> Eq for NamespaceSelectorChildren<'tree>
impl<'tree> StructuralPartialEq for NamespaceSelectorChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for NamespaceSelectorChildren<'tree>
impl<'tree> RefUnwindSafe for NamespaceSelectorChildren<'tree>
impl<'tree> Send for NamespaceSelectorChildren<'tree>
impl<'tree> Sync for NamespaceSelectorChildren<'tree>
impl<'tree> Unpin for NamespaceSelectorChildren<'tree>
impl<'tree> UnsafeUnpin for NamespaceSelectorChildren<'tree>
impl<'tree> UnwindSafe for NamespaceSelectorChildren<'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