Enum syn::GenericParam [] [src]

pub enum GenericParam {
    Type(TypeParam),
    Lifetime(LifetimeDef),
    Const(ConstParam),
}

A generic type parameter, lifetime, or const generic: T: Into<String>, 'a: 'b, const LEN: usize.

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

Syntax tree enum

This type is a syntax tree enum.

Variants

A generic type parameter: T: Into<String>.

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

A lifetime definition: 'a: 'b + 'c + 'd.

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

A const generic parameter: const LENGTH: usize.

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

Trait Implementations

impl Synom for GenericParam
[src]

[src]

[src]

impl Debug for GenericParam
[src]

[src]

Formats the value using the given formatter.

impl Eq for GenericParam
[src]

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<TypeParam> for GenericParam
[src]

[src]

Performs the conversion.

impl From<LifetimeDef> for GenericParam
[src]

[src]

Performs the conversion.

impl From<ConstParam> for GenericParam
[src]

[src]

Performs the conversion.

impl ToTokens for GenericParam
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more