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
lifetimes: Vec<LifetimeDef>
ty_params: Vec<TyParam>
where_clause: WhereClause
Methods
impl Generics
[src]
impl Generics
pub fn split_for_impl(&self) -> (ImplGenerics, TyGenerics, &WhereClause)
[src]
pub fn split_for_impl(&self) -> (ImplGenerics, TyGenerics, &WhereClause)
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]
impl ToTokens for Generics
impl Debug for Generics
[src]
impl Debug for Generics
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for Generics
[src]
impl Clone for Generics
fn clone(&self) -> Generics
[src]
fn clone(&self) -> Generics
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Eq for Generics
[src]
impl Eq for Generics
impl PartialEq for Generics
[src]
impl PartialEq for Generics
fn eq(&self, other: &Generics) -> bool
[src]
fn eq(&self, other: &Generics) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Generics) -> bool
[src]
fn ne(&self, other: &Generics) -> bool
This method tests for !=
.
impl Default for Generics
[src]
impl Default for Generics
impl Hash for Generics
[src]
impl Hash for Generics