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 TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Debug for MethodTurbofish
[src]

Formats the value using the given formatter. Read more

impl Eq for MethodTurbofish
[src]

impl PartialEq for MethodTurbofish
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for MethodTurbofish
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. 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