Struct syn::Generics [] [src]

pub struct Generics {
    pub lifetimes: Vec<LifetimeDef>,
    pub ty_params: Vec<TyParam>,
    pub where_clause: WhereClause,
}

Represents lifetimes and type parameters attached to a declaration of a function, enum, trait, etc.

Fields

Methods

impl Generics
[src]

Split a type's generics into the pieces required for impl'ing a trait for that type.

let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();
quote! {
    impl #impl_generics MyTrait for #name #ty_generics #where_clause {
        // ...
    }
}

Trait Implementations

impl ToTokens for Generics
[src]

Write self to the given Tokens. Read more

impl Debug for Generics
[src]

Formats the value using the given formatter.

impl Clone for Generics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Generics
[src]

impl PartialEq for Generics
[src]

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

This method tests for !=.

impl Default for Generics
[src]

Returns the "default value" for a type. Read more

impl Hash for Generics
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.