Struct edlang_ast::FnCallExpr
source · pub struct FnCallExpr {
pub name: Ident,
pub params: Vec<Expression>,
pub span: Span,
}
Fields§
§name: Ident
§params: Vec<Expression>
§span: Span
Trait Implementations§
source§impl Clone for FnCallExpr
impl Clone for FnCallExpr
source§fn clone(&self) -> FnCallExpr
fn clone(&self) -> FnCallExpr
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 FnCallExpr
impl Debug for FnCallExpr
source§impl Hash for FnCallExpr
impl Hash for FnCallExpr
source§impl Ord for FnCallExpr
impl Ord for FnCallExpr
source§fn cmp(&self, other: &FnCallExpr) -> Ordering
fn cmp(&self, other: &FnCallExpr) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for FnCallExpr
impl PartialEq for FnCallExpr
source§fn eq(&self, other: &FnCallExpr) -> bool
fn eq(&self, other: &FnCallExpr) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for FnCallExpr
impl PartialOrd for FnCallExpr
source§fn partial_cmp(&self, other: &FnCallExpr) -> Option<Ordering>
fn partial_cmp(&self, other: &FnCallExpr) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for FnCallExpr
impl StructuralPartialEq for FnCallExpr
Auto Trait Implementations§
impl Freeze for FnCallExpr
impl RefUnwindSafe for FnCallExpr
impl Send for FnCallExpr
impl Sync for FnCallExpr
impl Unpin for FnCallExpr
impl UnwindSafe for FnCallExpr
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