Struct rustc_hir::Generics

source ·
pub struct Generics<'hir> {
    pub params: &'hir [GenericParam<'hir>],
    pub predicates: &'hir [WherePredicate<'hir>],
    pub has_where_clause_predicates: bool,
    pub where_clause_span: Span,
    pub span: Span,
}
Expand description

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

Fields§

§params: &'hir [GenericParam<'hir>]§predicates: &'hir [WherePredicate<'hir>]§has_where_clause_predicates: bool§where_clause_span: Span§span: Span

Implementations§

If there are generic parameters, return where to introduce a new one.

If there are generic parameters, return where to introduce a new one.

Span where further predicates would be suggested, accounting for trailing commas, like in fn foo<T>(t: T) where T: Foo, so we don’t suggest two trailing commas.

Trait Implementations§

Formats the value using the given formatter. Read more

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.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 56 bytes