Struct unrest_tmp_syn::ExprMethodCall [] [src]

pub struct ExprMethodCall { /* fields omitted */ }

A method call (x.foo::<Bar, Baz>(a, b, c, d))

The Ident is the identifier for the method name. The vector of Tys are the ascripted type parameters for the method (within the angle brackets).

Thus, x.foo::<Bar, Baz>(a, b, c, d) is represented as ExprKind::MethodCall(foo, [Bar, Baz], [x, a, b, c, d]).

Trait Implementations

impl Clone for ExprMethodCall
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more