pub struct ExprCall {
pub expr: Box<Expr>,
pub args: ArgList,
}
Expand description
A function call expression: foo(42)
or foo({ bar: 42 })
.
Fields§
§expr: Box<Expr>
§args: ArgList
Trait Implementations§
Source§impl From<ExprPayable> for ExprCall
impl From<ExprPayable> for ExprCall
Source§fn from(value: ExprPayable) -> Self
fn from(value: ExprPayable) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExprCall
impl RefUnwindSafe for ExprCall
impl !Send for ExprCall
impl !Sync for ExprCall
impl Unpin for ExprCall
impl UnwindSafe for ExprCall
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)