@@ -213,7 +213,7 @@ impl AssocItem {
213
213
}
214
214
}
215
215
216
- pub fn signature < ' tcx > ( & self , tcx : TyCtxt < ' tcx > ) -> String {
216
+ pub fn signature ( & self , tcx : TyCtxt < ' _ > ) -> String {
217
217
match self . kind {
218
218
ty:: AssocKind :: Method => {
219
219
// We skip the binder here because the binder would deanonymize all
@@ -2311,7 +2311,7 @@ impl<'tcx> AdtDef {
2311
2311
/// Returns an iterator over all fields contained
2312
2312
/// by this ADT.
2313
2313
#[ inline]
2314
- pub fn all_fields < ' s > ( & ' s self ) -> impl Iterator < Item = & ' s FieldDef > + Clone {
2314
+ pub fn all_fields ( & self ) -> impl Iterator < Item = & FieldDef > + Clone {
2315
2315
self . variants . iter ( ) . flat_map ( |v| v. fields . iter ( ) )
2316
2316
}
2317
2317
@@ -3125,7 +3125,7 @@ impl Iterator for AssocItemsIterator<'_> {
3125
3125
}
3126
3126
}
3127
3127
3128
- fn associated_item < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> AssocItem {
3128
+ fn associated_item ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> AssocItem {
3129
3129
let id = tcx. hir ( ) . as_local_hir_id ( def_id) . unwrap ( ) ;
3130
3130
let parent_id = tcx. hir ( ) . get_parent_item ( id) ;
3131
3131
let parent_def_id = tcx. hir ( ) . local_def_id_from_hir_id ( parent_id) ;
@@ -3170,7 +3170,7 @@ pub struct AdtSizedConstraint<'tcx>(pub &'tcx [Ty<'tcx>]);
3170
3170
/// such.
3171
3171
/// - a Error, if a type contained itself. The representability
3172
3172
/// check should catch this case.
3173
- fn adt_sized_constraint < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> AdtSizedConstraint < ' tcx > {
3173
+ fn adt_sized_constraint ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> AdtSizedConstraint < ' _ > {
3174
3174
let def = tcx. adt_def ( def_id) ;
3175
3175
3176
3176
let result = tcx. mk_type_list ( def. variants . iter ( ) . flat_map ( |v| {
@@ -3184,7 +3184,7 @@ fn adt_sized_constraint<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> AdtSizedConst
3184
3184
AdtSizedConstraint ( result)
3185
3185
}
3186
3186
3187
- fn associated_item_def_ids < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> & ' tcx [ DefId ] {
3187
+ fn associated_item_def_ids ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> & [ DefId ] {
3188
3188
let id = tcx. hir ( ) . as_local_hir_id ( def_id) . unwrap ( ) ;
3189
3189
let item = tcx. hir ( ) . expect_item ( id) ;
3190
3190
match item. node {
@@ -3207,14 +3207,14 @@ fn associated_item_def_ids<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> &'tcx [Def
3207
3207
}
3208
3208
}
3209
3209
3210
- fn def_span < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> Span {
3210
+ fn def_span ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> Span {
3211
3211
tcx. hir ( ) . span_if_local ( def_id) . unwrap ( )
3212
3212
}
3213
3213
3214
3214
/// If the given `DefId` describes an item belonging to a trait,
3215
3215
/// returns the `DefId` of the trait that the trait item belongs to;
3216
3216
/// otherwise, returns `None`.
3217
- fn trait_of_item < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> Option < DefId > {
3217
+ fn trait_of_item ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> Option < DefId > {
3218
3218
tcx. opt_associated_item ( def_id)
3219
3219
. and_then ( |associated_item| {
3220
3220
match associated_item. container {
@@ -3237,7 +3237,7 @@ pub fn is_impl_trait_defn(tcx: TyCtxt<'_>, def_id: DefId) -> Option<DefId> {
3237
3237
}
3238
3238
3239
3239
/// See `ParamEnv` struct definition for details.
3240
- fn param_env < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> ParamEnv < ' tcx > {
3240
+ fn param_env ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> ParamEnv < ' _ > {
3241
3241
// The param_env of an impl Trait type is its defining function's param_env
3242
3242
if let Some ( parent) = is_impl_trait_defn ( tcx, def_id) {
3243
3243
return param_env ( tcx, parent) ;
@@ -3272,17 +3272,17 @@ fn param_env<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> ParamEnv<'tcx> {
3272
3272
traits:: normalize_param_env_or_error ( tcx, def_id, unnormalized_env, cause)
3273
3273
}
3274
3274
3275
- fn crate_disambiguator < ' tcx > ( tcx : TyCtxt < ' tcx > , crate_num : CrateNum ) -> CrateDisambiguator {
3275
+ fn crate_disambiguator ( tcx : TyCtxt < ' _ > , crate_num : CrateNum ) -> CrateDisambiguator {
3276
3276
assert_eq ! ( crate_num, LOCAL_CRATE ) ;
3277
3277
tcx. sess . local_crate_disambiguator ( )
3278
3278
}
3279
3279
3280
- fn original_crate_name < ' tcx > ( tcx : TyCtxt < ' tcx > , crate_num : CrateNum ) -> Symbol {
3280
+ fn original_crate_name ( tcx : TyCtxt < ' _ > , crate_num : CrateNum ) -> Symbol {
3281
3281
assert_eq ! ( crate_num, LOCAL_CRATE ) ;
3282
3282
tcx. crate_name . clone ( )
3283
3283
}
3284
3284
3285
- fn crate_hash < ' tcx > ( tcx : TyCtxt < ' tcx > , crate_num : CrateNum ) -> Svh {
3285
+ fn crate_hash ( tcx : TyCtxt < ' _ > , crate_num : CrateNum ) -> Svh {
3286
3286
assert_eq ! ( crate_num, LOCAL_CRATE ) ;
3287
3287
tcx. hir ( ) . crate_hash
3288
3288
}
@@ -3302,7 +3302,7 @@ fn instance_def_size_estimate<'tcx>(tcx: TyCtxt<'tcx>, instance_def: InstanceDef
3302
3302
/// If `def_id` is an issue 33140 hack impl, returns its self type; otherwise, returns `None`.
3303
3303
///
3304
3304
/// See [`ImplOverlapKind::Issue33140`] for more details.
3305
- fn issue33140_self_ty < ' tcx > ( tcx : TyCtxt < ' tcx > , def_id : DefId ) -> Option < Ty < ' tcx > > {
3305
+ fn issue33140_self_ty ( tcx : TyCtxt < ' _ > , def_id : DefId ) -> Option < Ty < ' _ > > {
3306
3306
debug ! ( "issue33140_self_ty({:?})" , def_id) ;
3307
3307
3308
3308
let trait_ref = tcx. impl_trait_ref ( def_id) . unwrap_or_else ( || {
0 commit comments