pub struct FunctionCall {
pub name: FunctionName,
pub parameters: Vec<Expression>,
}
Expand description
§Function call
Basic struct for function call representation
Fields§
§name: FunctionName
Call function name
parameters: Vec<Expression>
Call function parameters contains expressions
Trait Implementations§
Source§impl Clone for FunctionCall
impl Clone for FunctionCall
Source§fn clone(&self) -> FunctionCall
fn clone(&self) -> FunctionCall
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 FunctionCall
impl Debug for FunctionCall
Source§impl Display for FunctionCall
impl Display for FunctionCall
Source§impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<FunctionCall<'_, I, E>> for FunctionCall
impl<I: SemanticContextInstruction, E: ExtendedExpression<I>> From<FunctionCall<'_, I, E>> for FunctionCall
Source§fn from(value: FunctionCall<'_, I, E>) -> Self
fn from(value: FunctionCall<'_, I, E>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FunctionCall
impl PartialEq for FunctionCall
impl StructuralPartialEq for FunctionCall
Auto Trait Implementations§
impl Freeze for FunctionCall
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