pub enum AttributeSelectorChildren<'tree> {
Show 24 variants
AdjacentSiblingSelector(Box<AdjacentSiblingSelector<'tree>>),
AttributeName(Box<AttributeName<'tree>>),
AttributeSelector(Box<AttributeSelector<'tree>>),
BinaryExpression(Box<BinaryExpression<'tree>>),
CallExpression(Box<CallExpression<'tree>>),
ChildSelector(Box<ChildSelector<'tree>>),
ClassSelector(Box<ClassSelector<'tree>>),
ColorValue(Box<ColorValue<'tree>>),
DescendantSelector(Box<DescendantSelector<'tree>>),
FloatValue(Box<FloatValue<'tree>>),
GridValue(Box<GridValue<'tree>>),
IdSelector(Box<IdSelector<'tree>>),
Important(Box<Important<'tree>>),
IntegerValue(Box<IntegerValue<'tree>>),
NamespaceSelector(Box<NamespaceSelector<'tree>>),
NestingSelector(Box<NestingSelector<'tree>>),
ParenthesizedValue(Box<ParenthesizedValue<'tree>>),
PlainValue(Box<PlainValue<'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>>)
AttributeName(Box<AttributeName<'tree>>)
AttributeSelector(Box<AttributeSelector<'tree>>)
BinaryExpression(Box<BinaryExpression<'tree>>)
CallExpression(Box<CallExpression<'tree>>)
ChildSelector(Box<ChildSelector<'tree>>)
ClassSelector(Box<ClassSelector<'tree>>)
ColorValue(Box<ColorValue<'tree>>)
DescendantSelector(Box<DescendantSelector<'tree>>)
FloatValue(Box<FloatValue<'tree>>)
GridValue(Box<GridValue<'tree>>)
IdSelector(Box<IdSelector<'tree>>)
Important(Box<Important<'tree>>)
IntegerValue(Box<IntegerValue<'tree>>)
NamespaceSelector(Box<NamespaceSelector<'tree>>)
NestingSelector(Box<NestingSelector<'tree>>)
ParenthesizedValue(Box<ParenthesizedValue<'tree>>)
PlainValue(Box<PlainValue<'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 AttributeSelectorChildren<'tree>
impl<'tree> Clone for AttributeSelectorChildren<'tree>
Source§fn clone(&self) -> AttributeSelectorChildren<'tree>
fn clone(&self) -> AttributeSelectorChildren<'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 AttributeSelectorChildren<'tree>
impl<'tree> Debug for AttributeSelectorChildren<'tree>
Source§impl<'tree> FromNode<'tree> for AttributeSelectorChildren<'tree>
impl<'tree> FromNode<'tree> for AttributeSelectorChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AttributeSelectorChildren<'tree>
impl<'tree> RefUnwindSafe for AttributeSelectorChildren<'tree>
impl<'tree> Send for AttributeSelectorChildren<'tree>
impl<'tree> Sync for AttributeSelectorChildren<'tree>
impl<'tree> Unpin for AttributeSelectorChildren<'tree>
impl<'tree> UnsafeUnpin for AttributeSelectorChildren<'tree>
impl<'tree> UnwindSafe for AttributeSelectorChildren<'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