pub struct ObjectCreationExpression<'tree> {
pub span: Span,
pub arguments: ArgumentList<'tree>,
pub type: SimpleType<'tree>,
pub type_arguments: Option<TypeArguments<'tree>>,
pub children: Vec<ObjectCreationExpressionChildren<'tree>>,
}Fields§
§span: Span§arguments: ArgumentList<'tree>§type: SimpleType<'tree>§type_arguments: Option<TypeArguments<'tree>>§children: Vec<ObjectCreationExpressionChildren<'tree>>Trait Implementations§
Source§impl<'tree> Clone for ObjectCreationExpression<'tree>
impl<'tree> Clone for ObjectCreationExpression<'tree>
Source§fn clone(&self) -> ObjectCreationExpression<'tree>
fn clone(&self) -> ObjectCreationExpression<'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 ObjectCreationExpression<'tree>
impl<'tree> Debug for ObjectCreationExpression<'tree>
Source§impl<'tree> FromNode<'tree> for ObjectCreationExpression<'tree>
impl<'tree> FromNode<'tree> for ObjectCreationExpression<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ObjectCreationExpression<'tree>
impl<'tree> RefUnwindSafe for ObjectCreationExpression<'tree>
impl<'tree> Send for ObjectCreationExpression<'tree>
impl<'tree> Sync for ObjectCreationExpression<'tree>
impl<'tree> Unpin for ObjectCreationExpression<'tree>
impl<'tree> UnsafeUnpin for ObjectCreationExpression<'tree>
impl<'tree> UnwindSafe for ObjectCreationExpression<'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