Enum syn::GenericMethodArgument [] [src]

pub enum GenericMethodArgument {
    Type(Type),
    Const(Expr),
}

An individual generic argument to a method, like T.

This type is available if Syn is built with the "full" feature.

Variants

A type argument.

A const expression. Must be inside of a block.

NOTE: Identity expressions are represented as Type arguments, as they are indistinguishable syntactically.

Trait Implementations

impl Synom for GenericMethodArgument
[src]

[src]

[src]

impl ToTokens for GenericMethodArgument
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

impl Debug for GenericMethodArgument
[src]

[src]

Formats the value using the given formatter.

impl Eq for GenericMethodArgument
[src]

impl PartialEq for GenericMethodArgument
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Hash for GenericMethodArgument
[src]

[src]

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

1.3.0
[src]

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

impl Clone for GenericMethodArgument
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more