Struct syntax::ast::AngleBracketedParameterData[][src]

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

A path like Foo<'a, T>

Fields

Overall span

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 Clone for AngleBracketedParameterData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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 Eq for AngleBracketedParameterData
[src]

impl Encodable for AngleBracketedParameterData
[src]

impl Decodable for AngleBracketedParameterData
[src]

impl Hash for AngleBracketedParameterData
[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for AngleBracketedParameterData
[src]

Formats the value using the given formatter. Read more

impl Default for AngleBracketedParameterData
[src]

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

impl Into<Option<P<PathParameters>>> for AngleBracketedParameterData
[src]

Performs the conversion.

Auto Trait Implementations