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 PartialEq for AngleBracketedArgs
[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 AngleBracketedArgs
[src]

impl Encodable for AngleBracketedArgs
[src]

impl Decodable for AngleBracketedArgs
[src]

impl Hash for AngleBracketedArgs
[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 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