Enum syntax::ast::GenericArgs[][src]

pub enum GenericArgs {
    AngleBracketed(AngleBracketedArgs),
    Parenthesized(ParenthesisedArgs),
}

Arguments of a path segment.

E.g. <A, B> as in Foo<A, B> or (A, B) as in Foo(A, B)

Variants

The <'a, A,B,C> in foo::bar::baz::<'a, A,B,C>

The (A,B) and C in Foo(A,B) -> C

Methods

impl GenericArgs
[src]

Trait Implementations

impl Clone for GenericArgs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for GenericArgs
[src]

impl Decodable for GenericArgs
[src]

impl Debug for GenericArgs
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for GenericArgs

impl !Sync for GenericArgs