Type Alias ExprCall

Source
pub type ExprCall = ExprCall<SourceRange>;

Aliased Type§

struct ExprCall {
    pub range: SourceRange,
    pub func: Box<Expr<SourceRange>>,
    pub args: Vec<Expr<SourceRange>>,
    pub keywords: Vec<Keyword<SourceRange>>,
}

Fields§

§range: SourceRange§func: Box<Expr<SourceRange>>§args: Vec<Expr<SourceRange>>§keywords: Vec<Keyword<SourceRange>>

Trait Implementations§

Source§

impl Located for ExprCall

Source§

impl LocatedMut for ExprCall

Source§

fn range_mut(&mut self) -> &mut SourceRange

Source§

impl<R: Clone> Clone for ExprCall<R>

Source§

fn clone(&self) -> ExprCall<R>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<R: Debug> Debug for ExprCall<R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, U> Foldable<T, U> for ExprCall<T>

Source§

type Mapped = ExprCall<U>

Source§

fn fold<F: Fold<T, TargetU = U> + ?Sized>( self, folder: &mut F, ) -> Result<Self::Mapped, F::Error>

Source§

impl<R> Node for ExprCall<R>

Source§

const NAME: &'static str = "Call"

Source§

const FIELD_NAMES: &'static [&'static str]

Source§

impl<R: PartialEq> PartialEq for ExprCall<R>

Source§

fn eq(&self, other: &ExprCall<R>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<R> StructuralPartialEq for ExprCall<R>