pub enum ImportStatementChildren<'tree> {
Show 16 variants
BinaryExpression(Box<BinaryExpression<'tree>>),
BinaryQuery(Box<BinaryQuery<'tree>>),
CallExpression(Box<CallExpression<'tree>>),
ColorValue(Box<ColorValue<'tree>>),
FeatureQuery(Box<FeatureQuery<'tree>>),
FloatValue(Box<FloatValue<'tree>>),
GridValue(Box<GridValue<'tree>>),
Important(Box<Important<'tree>>),
IntegerValue(Box<IntegerValue<'tree>>),
KeywordQuery(Box<KeywordQuery<'tree>>),
ParenthesizedQuery(Box<ParenthesizedQuery<'tree>>),
ParenthesizedValue(Box<ParenthesizedValue<'tree>>),
PlainValue(Box<PlainValue<'tree>>),
SelectorQuery(Box<SelectorQuery<'tree>>),
StringValue(Box<StringValue<'tree>>),
UnaryQuery(Box<UnaryQuery<'tree>>),
}Variants§
BinaryExpression(Box<BinaryExpression<'tree>>)
BinaryQuery(Box<BinaryQuery<'tree>>)
CallExpression(Box<CallExpression<'tree>>)
ColorValue(Box<ColorValue<'tree>>)
FeatureQuery(Box<FeatureQuery<'tree>>)
FloatValue(Box<FloatValue<'tree>>)
GridValue(Box<GridValue<'tree>>)
Important(Box<Important<'tree>>)
IntegerValue(Box<IntegerValue<'tree>>)
KeywordQuery(Box<KeywordQuery<'tree>>)
ParenthesizedQuery(Box<ParenthesizedQuery<'tree>>)
ParenthesizedValue(Box<ParenthesizedValue<'tree>>)
PlainValue(Box<PlainValue<'tree>>)
SelectorQuery(Box<SelectorQuery<'tree>>)
StringValue(Box<StringValue<'tree>>)
UnaryQuery(Box<UnaryQuery<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ImportStatementChildren<'tree>
impl<'tree> Clone for ImportStatementChildren<'tree>
Source§fn clone(&self) -> ImportStatementChildren<'tree>
fn clone(&self) -> ImportStatementChildren<'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 ImportStatementChildren<'tree>
impl<'tree> Debug for ImportStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ImportStatementChildren<'tree>
impl<'tree> FromNode<'tree> for ImportStatementChildren<'tree>
Source§impl<'tree> PartialEq for ImportStatementChildren<'tree>
impl<'tree> PartialEq for ImportStatementChildren<'tree>
Source§fn eq(&self, other: &ImportStatementChildren<'tree>) -> bool
fn eq(&self, other: &ImportStatementChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for ImportStatementChildren<'_>
impl Spanned for ImportStatementChildren<'_>
impl<'tree> Eq for ImportStatementChildren<'tree>
impl<'tree> StructuralPartialEq for ImportStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ImportStatementChildren<'tree>
impl<'tree> RefUnwindSafe for ImportStatementChildren<'tree>
impl<'tree> Send for ImportStatementChildren<'tree>
impl<'tree> Sync for ImportStatementChildren<'tree>
impl<'tree> Unpin for ImportStatementChildren<'tree>
impl<'tree> UnsafeUnpin for ImportStatementChildren<'tree>
impl<'tree> UnwindSafe for ImportStatementChildren<'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