pub struct ExprFunctionCall {
pub prefix: Box<Expression>,
pub method: Option<SpannedString>,
pub args: FunctionCallArguments,
pub span: Span,
}Expand description
function call. prefix(args) or prefix:method(args).
Fields§
§prefix: Box<Expression>§method: Option<SpannedString>§args: FunctionCallArguments§span: SpanImplementations§
Source§impl ExprFunctionCall
impl ExprFunctionCall
pub fn new( prefix: Expression, method: Option<SpannedString>, args: FunctionCallArguments, span: Span, ) -> Self
Trait Implementations§
Source§impl Clone for ExprFunctionCall
impl Clone for ExprFunctionCall
Source§fn clone(&self) -> ExprFunctionCall
fn clone(&self) -> ExprFunctionCall
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 moreAuto Trait Implementations§
impl Freeze for ExprFunctionCall
impl RefUnwindSafe for ExprFunctionCall
impl Send for ExprFunctionCall
impl Sync for ExprFunctionCall
impl Unpin for ExprFunctionCall
impl UnwindSafe for ExprFunctionCall
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