Struct semantic_analyzer::types::FunctionCall
source · pub struct FunctionCall {
pub name: FunctionName,
pub parameters: Vec<Expression>,
}
Fields§
§name: FunctionName
§parameters: Vec<Expression>
Trait Implementations§
source§impl Clone for FunctionCall
impl Clone for FunctionCall
source§fn clone(&self) -> FunctionCall
fn clone(&self) -> FunctionCall
Returns a copy 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 FunctionCall
impl Debug for FunctionCall
source§impl From<FunctionCall<'_>> for FunctionCall
impl From<FunctionCall<'_>> for FunctionCall
source§fn from(value: FunctionCall<'_>) -> Self
fn from(value: FunctionCall<'_>) -> Self
Converts to this type from the input type.
source§impl PartialEq<FunctionCall> for FunctionCall
impl PartialEq<FunctionCall> for FunctionCall
source§fn eq(&self, other: &FunctionCall) -> bool
fn eq(&self, other: &FunctionCall) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FunctionCall
Auto Trait Implementations§
impl RefUnwindSafe for FunctionCall
impl Send for FunctionCall
impl Sync for FunctionCall
impl Unpin for FunctionCall
impl UnwindSafe for FunctionCall
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