Struct docs::ast::CallExpression
source · pub struct CallExpression {
pub token: Token,
pub function: Box<Expression>,
pub arguments: Vec<Expression>,
}Fields§
§token: Token§function: Box<Expression>§arguments: Vec<Expression>Trait Implementations§
source§impl Clone for CallExpression
impl Clone for CallExpression
source§fn clone(&self) -> CallExpression
fn clone(&self) -> CallExpression
Returns a copy 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 Debug for CallExpression
impl Debug for CallExpression
source§impl Nodetrait for CallExpression
impl Nodetrait for CallExpression
source§impl PartialEq for CallExpression
impl PartialEq for CallExpression
source§fn eq(&self, other: &CallExpression) -> bool
fn eq(&self, other: &CallExpression) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CallExpression
Auto Trait Implementations§
impl Freeze for CallExpression
impl RefUnwindSafe for CallExpression
impl Send for CallExpression
impl Sync for CallExpression
impl Unpin for CallExpression
impl UnwindSafe for CallExpression
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