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