pub enum AtRuleChildren<'tree> {
AtKeyword(Box<AtKeyword<'tree>>),
BinaryQuery(Box<BinaryQuery<'tree>>),
Block(Box<Block<'tree>>),
FeatureQuery(Box<FeatureQuery<'tree>>),
KeywordQuery(Box<KeywordQuery<'tree>>),
ParenthesizedQuery(Box<ParenthesizedQuery<'tree>>),
SelectorQuery(Box<SelectorQuery<'tree>>),
UnaryQuery(Box<UnaryQuery<'tree>>),
}Variants§
AtKeyword(Box<AtKeyword<'tree>>)
BinaryQuery(Box<BinaryQuery<'tree>>)
Block(Box<Block<'tree>>)
FeatureQuery(Box<FeatureQuery<'tree>>)
KeywordQuery(Box<KeywordQuery<'tree>>)
ParenthesizedQuery(Box<ParenthesizedQuery<'tree>>)
SelectorQuery(Box<SelectorQuery<'tree>>)
UnaryQuery(Box<UnaryQuery<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for AtRuleChildren<'tree>
impl<'tree> Clone for AtRuleChildren<'tree>
Source§fn clone(&self) -> AtRuleChildren<'tree>
fn clone(&self) -> AtRuleChildren<'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 AtRuleChildren<'tree>
impl<'tree> Debug for AtRuleChildren<'tree>
Source§impl<'tree> FromNode<'tree> for AtRuleChildren<'tree>
impl<'tree> FromNode<'tree> for AtRuleChildren<'tree>
Source§impl<'tree> PartialEq for AtRuleChildren<'tree>
impl<'tree> PartialEq for AtRuleChildren<'tree>
Source§impl Spanned for AtRuleChildren<'_>
impl Spanned for AtRuleChildren<'_>
impl<'tree> Eq for AtRuleChildren<'tree>
impl<'tree> StructuralPartialEq for AtRuleChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for AtRuleChildren<'tree>
impl<'tree> RefUnwindSafe for AtRuleChildren<'tree>
impl<'tree> Send for AtRuleChildren<'tree>
impl<'tree> Sync for AtRuleChildren<'tree>
impl<'tree> Unpin for AtRuleChildren<'tree>
impl<'tree> UnsafeUnpin for AtRuleChildren<'tree>
impl<'tree> UnwindSafe for AtRuleChildren<'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