[][src]Struct syn::ExprMethodCall

pub struct ExprMethodCall {
    pub attrs: Vec<Attribute>,
    pub receiver: Box<Expr>,
    pub dot_token: Dot,
    pub method: Ident,
    pub turbofish: Option<MethodTurbofish>,
    pub paren_token: Paren,
    pub args: Punctuated<Expr, Comma>,
}

A method call expression: x.foo::<T>(a, b).

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

Fields

attrs: Vec<Attribute>receiver: Box<Expr>dot_token: Dotmethod: Identturbofish: Option<MethodTurbofish>paren_token: Parenargs: Punctuated<Expr, Comma>

Trait Implementations

impl Parse for ExprMethodCall[src]

impl From<ExprMethodCall> for Expr[src]

impl Clone for ExprMethodCall[src]

impl Eq for ExprMethodCall[src]

impl PartialEq<ExprMethodCall> for ExprMethodCall[src]

impl Debug for ExprMethodCall[src]

impl Hash for ExprMethodCall[src]

impl StructuralPartialEq for ExprMethodCall[src]

impl StructuralEq for ExprMethodCall[src]

impl ToTokens for ExprMethodCall[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]