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