Struct syn::MethodTurbofish[][src]

pub struct MethodTurbofish {
    pub colon2_token: Colon2,
    pub lt_token: Lt,
    pub args: Punctuated<GenericMethodArgument, Comma>,
    pub gt_token: Gt,
}

The ::<> explicit type parameters passed to a method call: parse::<u64>().

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

Fields

Trait Implementations

impl ToTokens for MethodTurbofish
[src]

Write self to the given Tokens. Read more

Convert self directly into a Tokens object. Read more

impl Clone for MethodTurbofish
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for MethodTurbofish

impl !Sync for MethodTurbofish