pub struct CallExpr {
pub func: String,
pub args: Vec<Arg>,
pub span: Span,
}Expand description
A function call expression.
Fields§
§func: StringThe function’s name.
args: Vec<Arg>The arguments, in call order.
span: SpanWhere the call appears.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallExpr
impl RefUnwindSafe for CallExpr
impl Send for CallExpr
impl Sync for CallExpr
impl Unpin for CallExpr
impl UnsafeUnpin for CallExpr
impl UnwindSafe for CallExpr
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