pub struct ASTFunctionCall {
pub identifier: Identifier,
pub args: Vec<Element>,
pub scope: Option<Scope>,
}Fields§
§identifier: Identifier§args: Vec<Element>§scope: Option<Scope>Trait Implementations§
Source§impl Clone for ASTFunctionCall
impl Clone for ASTFunctionCall
Source§fn clone(&self) -> ASTFunctionCall
fn clone(&self) -> ASTFunctionCall
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 ASTFunctionCall
impl Debug for ASTFunctionCall
Source§impl<'de> Deserialize<'de> for ASTFunctionCall
impl<'de> Deserialize<'de> for ASTFunctionCall
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 PartialEq for ASTFunctionCall
impl PartialEq for ASTFunctionCall
Source§impl Serialize for ASTFunctionCall
impl Serialize for ASTFunctionCall
impl StructuralPartialEq for ASTFunctionCall
Auto Trait Implementations§
impl Freeze for ASTFunctionCall
impl RefUnwindSafe for ASTFunctionCall
impl Send for ASTFunctionCall
impl Sync for ASTFunctionCall
impl Unpin for ASTFunctionCall
impl UnwindSafe for ASTFunctionCall
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