pub struct Call {
pub path: Spanned<String>,
pub args: Vec<Spanned<Expr>>,
}Expand description
A function call. path is pre-normalized during lowering
(type::is::record → type::is_record); argument expressions keep their
own spans so per-argument diagnostics need no re-derivation.
Fields§
§path: Spanned<String>The canonicalized function path (type::is_record).
args: Vec<Spanned<Expr>>The argument expressions, each retaining its own span.
Trait Implementations§
impl StructuralPartialEq for Call
Auto Trait Implementations§
impl Freeze for Call
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnsafeUnpin for Call
impl UnwindSafe for Call
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