pub struct FunctionCallNode {
pub arguments: ArrayKind,
}
Expand description
Represents a function call
Fields§
§arguments: ArrayKind
The arguments to the function.
Implementations§
Trait Implementations§
Source§impl Clone for FunctionCallNode
impl Clone for FunctionCallNode
Source§fn clone(&self) -> FunctionCallNode
fn clone(&self) -> FunctionCallNode
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 FunctionCallNode
impl Debug for FunctionCallNode
Source§impl<'de> Deserialize<'de> for FunctionCallNode
impl<'de> Deserialize<'de> for FunctionCallNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<FunctionCallNode> for AstKind
impl From<FunctionCallNode> for AstKind
Source§fn from(id: FunctionCallNode) -> Self
fn from(id: FunctionCallNode) -> Self
Converts to this type from the input type.
Source§impl From<FunctionCallNode> for ExprKind
impl From<FunctionCallNode> for ExprKind
Source§fn from(id: FunctionCallNode) -> Self
fn from(id: FunctionCallNode) -> Self
Converts to this type from the input type.
Source§impl From<FunctionCallNode> for P<AstKind>
impl From<FunctionCallNode> for P<AstKind>
Source§fn from(id: FunctionCallNode) -> Self
fn from(id: FunctionCallNode) -> Self
Converts to this type from the input type.
Source§impl From<FunctionCallNode> for P<ExprKind>
impl From<FunctionCallNode> for P<ExprKind>
Source§fn from(id: FunctionCallNode) -> Self
fn from(id: FunctionCallNode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FunctionCallNode
impl PartialEq for FunctionCallNode
Source§impl Serialize for FunctionCallNode
impl Serialize for FunctionCallNode
impl Eq for FunctionCallNode
Auto Trait Implementations§
impl Freeze for FunctionCallNode
impl RefUnwindSafe for FunctionCallNode
impl Send for FunctionCallNode
impl Sync for FunctionCallNode
impl Unpin for FunctionCallNode
impl UnwindSafe for FunctionCallNode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.