Struct syn::AngleBracketedGenericArguments [] [src]

pub struct AngleBracketedGenericArguments {
    pub colon2_token: Option<Colon2>,
    pub lt_token: Lt,
    pub args: Punctuated<GenericArgument, Comma>,
    pub gt_token: Gt,
}

Angle bracketed arguments of a path segment: the <K, V> in HashMap<K, V>.

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

Fields

Trait Implementations

impl Synom for AngleBracketedGenericArguments
[src]

A short name of the type being parsed. Read more

impl ToTokens for AngleBracketedGenericArguments
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for AngleBracketedGenericArguments
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for AngleBracketedGenericArguments

impl !Sync for AngleBracketedGenericArguments