pub struct CallData {
pub callee: Box<Expr>,
pub paren: Token,
pub arguments: Vec<Expr>,
}Expand description
Represents a call expression’s data in the language.
Fields§
§callee: Box<Expr>§paren: Token§arguments: Vec<Expr>Trait Implementations§
impl Eq for CallData
impl StructuralPartialEq for CallData
Auto Trait Implementations§
impl Freeze for CallData
impl RefUnwindSafe for CallData
impl Send for CallData
impl Sync for CallData
impl Unpin for CallData
impl UnwindSafe for CallData
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