[][src]Enum syn::GenericMethodArgument

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

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

impl Clone for GenericMethodArgument[src]

impl Eq for GenericMethodArgument[src]

impl PartialEq<GenericMethodArgument> for GenericMethodArgument[src]

impl Debug for GenericMethodArgument[src]

impl Hash for GenericMethodArgument[src]

impl StructuralPartialEq for GenericMethodArgument[src]

impl StructuralEq for GenericMethodArgument[src]

impl ToTokens for GenericMethodArgument[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]