Struct syn::AngleBracketedParameterData [] [src]

pub struct AngleBracketedParameterData {
    pub lifetimes: Vec<Lifetime>,
    pub types: Vec<Ty>,
    pub bindings: Vec<TypeBinding>,
}

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]

impl Debug for AngleBracketedParameterData
[src]

Formats the value using the given formatter.

impl Clone for AngleBracketedParameterData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for AngleBracketedParameterData
[src]

impl PartialEq for AngleBracketedParameterData
[src]

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

This method tests for !=.

impl Default for AngleBracketedParameterData
[src]

Returns the "default value" for a type. Read more