Struct syntex_syntax::ast::AngleBracketedParameterData
[−]
[src]
pub struct AngleBracketedParameterData { pub lifetimes: Vec<Lifetime>, pub types: OwnedSlice<P<Ty>>, pub bindings: OwnedSlice<P<TypeBinding>>, }
A path like Foo<'a, T>
Fields
lifetimes | The lifetime parameters for this path segment. |
types | The type parameters for this path segment, if present. |
bindings | Bindings (equality constraints) on associated types, if present.
E.g., |