Struct unrest_tmp_syn::AngleBracketedParameterData [] [src]

pub struct AngleBracketedParameterData {
    pub turbofish: Option<Colon2>,
    pub lt_token: Lt,
    pub lifetimes: Delimited<Lifetime, Comma>,
    pub types: Delimited<Ty, Comma>,
    pub bindings: Delimited<TypeBinding, Comma>,
    pub gt_token: Gt,
}

A path like Foo<'a, T>

Fields

The lifetime parameters for this path segment.

The type parameters for this path segment, if present.

Bindings (equality constraints) on associated types, if present.

E.g., Foo<A=Bar>.

Trait Implementations

impl ToTokens for AngleBracketedParameterData
[src]

Write self to the given Tokens. Read more

Convert self directly into a Tokens object. Read more

impl Clone for AngleBracketedParameterData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more