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

impl Encodable for GenericArgs
[src]

impl Decodable for GenericArgs
[src]

impl Hash for GenericArgs
[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 GenericArgs
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl !Send for GenericArgs

impl !Sync for GenericArgs