pub enum ScopeStatementChildren<'tree> {
Show 15 variants
AdjacentSiblingSelector(Box<AdjacentSiblingSelector<'tree>>),
AttributeSelector(Box<AttributeSelector<'tree>>),
Block(Box<Block<'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>>)
Block(Box<Block<'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 ScopeStatementChildren<'tree>
impl<'tree> Clone for ScopeStatementChildren<'tree>
Source§fn clone(&self) -> ScopeStatementChildren<'tree>
fn clone(&self) -> ScopeStatementChildren<'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 ScopeStatementChildren<'tree>
impl<'tree> Debug for ScopeStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ScopeStatementChildren<'tree>
impl<'tree> FromNode<'tree> for ScopeStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ScopeStatementChildren<'tree>
impl<'tree> RefUnwindSafe for ScopeStatementChildren<'tree>
impl<'tree> Send for ScopeStatementChildren<'tree>
impl<'tree> Sync for ScopeStatementChildren<'tree>
impl<'tree> Unpin for ScopeStatementChildren<'tree>
impl<'tree> UnsafeUnpin for ScopeStatementChildren<'tree>
impl<'tree> UnwindSafe for ScopeStatementChildren<'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