pub struct ArrayExpression<'tree> {
pub span: Span,
pub length: Option<Expression<'tree>>,
pub children: Vec<ArrayExpressionChildren<'tree>>,
}Fields§
§span: Span§length: Option<Expression<'tree>>§children: Vec<ArrayExpressionChildren<'tree>>Trait Implementations§
Source§impl<'tree> Clone for ArrayExpression<'tree>
impl<'tree> Clone for ArrayExpression<'tree>
Source§fn clone(&self) -> ArrayExpression<'tree>
fn clone(&self) -> ArrayExpression<'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 ArrayExpression<'tree>
impl<'tree> Debug for ArrayExpression<'tree>
Source§impl<'tree> FromNode<'tree> for ArrayExpression<'tree>
impl<'tree> FromNode<'tree> for ArrayExpression<'tree>
Source§impl<'tree> PartialEq for ArrayExpression<'tree>
impl<'tree> PartialEq for ArrayExpression<'tree>
Source§impl Spanned for ArrayExpression<'_>
impl Spanned for ArrayExpression<'_>
impl<'tree> Eq for ArrayExpression<'tree>
impl<'tree> StructuralPartialEq for ArrayExpression<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ArrayExpression<'tree>
impl<'tree> RefUnwindSafe for ArrayExpression<'tree>
impl<'tree> Send for ArrayExpression<'tree>
impl<'tree> Sync for ArrayExpression<'tree>
impl<'tree> Unpin for ArrayExpression<'tree>
impl<'tree> UnsafeUnpin for ArrayExpression<'tree>
impl<'tree> UnwindSafe for ArrayExpression<'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