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

An individual generic argument to a method, like T.

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

Variants

Type(Type)

A type argument.

Const(Expr)

A const expression. Must be inside of a block.

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

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.