Struct syntax::ast::AngleBracketedArgs[][src]

pub struct AngleBracketedArgs {
    pub span: Span,
    pub args: Vec<GenericArg>,
    pub bindings: Vec<TypeBinding>,
}

A path like Foo<'a, T>

Fields

Overall span

The arguments for this path segment.

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

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

Trait Implementations

impl Clone for AngleBracketedArgs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for AngleBracketedArgs
[src]

impl Decodable for AngleBracketedArgs
[src]

impl Debug for AngleBracketedArgs
[src]

Formats the value using the given formatter. Read more

impl Default for AngleBracketedArgs
[src]

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

impl Into<Option<P<GenericArgs>>> for AngleBracketedArgs
[src]

Performs the conversion.

Auto Trait Implementations