pub struct FunctionCallExpression {
pub function: Box<Expression>,
pub arguments: Vec<Expression>,
}
Fields§
§function: Box<Expression>
§arguments: Vec<Expression>
Trait Implementations§
Source§impl Clone for FunctionCallExpression
impl Clone for FunctionCallExpression
Source§fn clone(&self) -> FunctionCallExpression
fn clone(&self) -> FunctionCallExpression
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 Debug for FunctionCallExpression
impl Debug for FunctionCallExpression
Source§impl PartialEq for FunctionCallExpression
impl PartialEq for FunctionCallExpression
impl StructuralPartialEq for FunctionCallExpression
Auto Trait Implementations§
impl Freeze for FunctionCallExpression
impl RefUnwindSafe for FunctionCallExpression
impl Send for FunctionCallExpression
impl Sync for FunctionCallExpression
impl Unpin for FunctionCallExpression
impl UnwindSafe for FunctionCallExpression
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