pub struct Call<'input> {
pub loc: Loc,
pub fun: Box<Expr<'input>>,
pub args: Vec<Expr<'input>>,
}
Expand description
A function call.
Fields§
§loc: Loc
§fun: Box<Expr<'input>>
§args: Vec<Expr<'input>>
Implementations§
Trait Implementations§
impl<'input> StructuralPartialEq for Call<'input>
Auto Trait Implementations§
impl<'input> Freeze for Call<'input>
impl<'input> RefUnwindSafe for Call<'input>
impl<'input> Send for Call<'input>
impl<'input> Sync for Call<'input>
impl<'input> Unpin for Call<'input>
impl<'input> UnwindSafe for Call<'input>
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