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