pub struct FunctionCallExpr {
pub namespace: Option<Spanned<Identifier>>,
pub name: Identifier,
pub arguments: Arc<ArgumentInvocation>,
pub span: Span,
}Fields§
§namespace: Option<Spanned<Identifier>>§name: Identifier§arguments: Arc<ArgumentInvocation>§span: SpanTrait Implementations§
Source§impl Clone for FunctionCallExpr
impl Clone for FunctionCallExpr
Source§fn clone(&self) -> FunctionCallExpr
fn clone(&self) -> FunctionCallExpr
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 FunctionCallExpr
impl RefUnwindSafe for FunctionCallExpr
impl Send for FunctionCallExpr
impl Sync for FunctionCallExpr
impl Unpin for FunctionCallExpr
impl UnwindSafe for FunctionCallExpr
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