Struct syn::ExprCall [] [src]

pub struct ExprCall {
    pub attrs: Vec<Attribute>,
    pub func: Box<Expr>,
    pub paren_token: Paren,
    pub args: Punctuated<Expr, Comma>,
}

A function call expression: invoke(a, b).

This type is available if Syn is built with the "derive" or "full" feature.

Fields

Trait Implementations

impl ToTokens for ExprCall
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for ExprCall
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<ExprCall> for Expr
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for ExprCall

impl !Sync for ExprCall