pub struct TopLevelCall {
pub name: String,
pub args: Vec<Expression>,
pub span: Span,
}Expand description
A top-level function call: funcName(args...)
Fields§
§name: String§args: Vec<Expression>§span: SpanTrait Implementations§
Source§impl Clone for TopLevelCall
impl Clone for TopLevelCall
Source§fn clone(&self) -> TopLevelCall
fn clone(&self) -> TopLevelCall
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 moreSource§impl Debug for TopLevelCall
impl Debug for TopLevelCall
Source§impl PartialEq for TopLevelCall
impl PartialEq for TopLevelCall
impl StructuralPartialEq for TopLevelCall
Auto Trait Implementations§
impl Freeze for TopLevelCall
impl RefUnwindSafe for TopLevelCall
impl Send for TopLevelCall
impl Sync for TopLevelCall
impl Unpin for TopLevelCall
impl UnwindSafe for TopLevelCall
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