pub enum GridValueChildren<'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 GridValueChildren<'tree>
impl<'tree> Clone for GridValueChildren<'tree>
Source§fn clone(&self) -> GridValueChildren<'tree>
fn clone(&self) -> GridValueChildren<'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 GridValueChildren<'tree>
impl<'tree> Debug for GridValueChildren<'tree>
Source§impl<'tree> FromNode<'tree> for GridValueChildren<'tree>
impl<'tree> FromNode<'tree> for GridValueChildren<'tree>
Source§impl<'tree> PartialEq for GridValueChildren<'tree>
impl<'tree> PartialEq for GridValueChildren<'tree>
Source§impl Spanned for GridValueChildren<'_>
impl Spanned for GridValueChildren<'_>
impl<'tree> Eq for GridValueChildren<'tree>
impl<'tree> StructuralPartialEq for GridValueChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for GridValueChildren<'tree>
impl<'tree> RefUnwindSafe for GridValueChildren<'tree>
impl<'tree> Send for GridValueChildren<'tree>
impl<'tree> Sync for GridValueChildren<'tree>
impl<'tree> Unpin for GridValueChildren<'tree>
impl<'tree> UnsafeUnpin for GridValueChildren<'tree>
impl<'tree> UnwindSafe for GridValueChildren<'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