pub struct FunctionCallArguments {
pub args: Vec<Expression>,
pub span: Span,
}Fields§
§args: Vec<Expression>arguments definition, excluding self argument.
span: Spanspan of the whole parameters
Implementations§
Trait Implementations§
Source§impl Clone for FunctionCallArguments
impl Clone for FunctionCallArguments
Source§fn clone(&self) -> FunctionCallArguments
fn clone(&self) -> FunctionCallArguments
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 FunctionCallArguments
impl RefUnwindSafe for FunctionCallArguments
impl Send for FunctionCallArguments
impl Sync for FunctionCallArguments
impl Unpin for FunctionCallArguments
impl UnwindSafe for FunctionCallArguments
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