pub enum IdSelectorChildren<'tree> {
Show 15 variants
AdjacentSiblingSelector(Box<AdjacentSiblingSelector<'tree>>),
AttributeSelector(Box<AttributeSelector<'tree>>),
ChildSelector(Box<ChildSelector<'tree>>),
ClassSelector(Box<ClassSelector<'tree>>),
DescendantSelector(Box<DescendantSelector<'tree>>),
IdName(Box<IdName<'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>>)
IdName(Box<IdName<'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 IdSelectorChildren<'tree>
impl<'tree> Clone for IdSelectorChildren<'tree>
Source§fn clone(&self) -> IdSelectorChildren<'tree>
fn clone(&self) -> IdSelectorChildren<'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 IdSelectorChildren<'tree>
impl<'tree> Debug for IdSelectorChildren<'tree>
Source§impl<'tree> FromNode<'tree> for IdSelectorChildren<'tree>
impl<'tree> FromNode<'tree> for IdSelectorChildren<'tree>
Source§impl<'tree> PartialEq for IdSelectorChildren<'tree>
impl<'tree> PartialEq for IdSelectorChildren<'tree>
Source§impl Spanned for IdSelectorChildren<'_>
impl Spanned for IdSelectorChildren<'_>
impl<'tree> Eq for IdSelectorChildren<'tree>
impl<'tree> StructuralPartialEq for IdSelectorChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for IdSelectorChildren<'tree>
impl<'tree> RefUnwindSafe for IdSelectorChildren<'tree>
impl<'tree> Send for IdSelectorChildren<'tree>
impl<'tree> Sync for IdSelectorChildren<'tree>
impl<'tree> Unpin for IdSelectorChildren<'tree>
impl<'tree> UnsafeUnpin for IdSelectorChildren<'tree>
impl<'tree> UnwindSafe for IdSelectorChildren<'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