pub struct CallExpression {
pub callee: Box<Node<Expression>>,
pub arguments: Vec<Node<Expression>>,
}
Expand description
Function call expression
(C11 6.5.2)
Fields§
§callee: Box<Node<Expression>>
§arguments: Vec<Node<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 PartialEq for CallExpression
impl PartialEq for CallExpression
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