add generic args to hir::TypeBinding

This commit is contained in:
b-naber
2020-11-30 09:23:00 +01:00
parent e708cbd91c
commit fdaf603102
2 changed files with 2 additions and 0 deletions

View File

@@ -2015,6 +2015,7 @@ pub struct TypeBinding<'hir> {
pub hir_id: HirId,
#[stable_hasher(project(name))]
pub ident: Ident,
pub gen_args: &'hir GenericArgs<'hir>,
pub kind: TypeBindingKind<'hir>,
pub span: Span,
}