@@ -86,7 +86,7 @@ impl GenericsGenerationResult<'_> {
8686pub ( super ) struct GenericsGenerationResults < ' hir > {
8787 pub ( super ) parent : GenericsGenerationResult < ' hir > ,
8888 pub ( super ) child : GenericsGenerationResult < ' hir > ,
89- pub ( super ) propagate_self_ty : Option < hir:: DelegationSelfTyPropagationKind > ,
89+ pub ( super ) self_ty_propagation_kind : Option < hir:: DelegationSelfTyPropagationKind > ,
9090}
9191
9292#[ derive( Debug ) ]
@@ -357,7 +357,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
357357 let child = DelegationGenerics :: generate_all ( sig_params, GenericsPosition :: Child , true ) ;
358358 let child = GenericsGenerationResult :: new ( child) ;
359359
360- return GenericsGenerationResults { parent, child, propagate_self_ty : None } ;
360+ return GenericsGenerationResults { parent, child, self_ty_propagation_kind : None } ;
361361 }
362362
363363 let delegation_in_free_ctx =
@@ -422,7 +422,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
422422 GenericsGenerationResults {
423423 parent : GenericsGenerationResult :: new ( parent_generics) ,
424424 child : GenericsGenerationResult :: new ( child_generics) ,
425- propagate_self_ty : match free_to_trait_delegation {
425+ self_ty_propagation_kind : match free_to_trait_delegation {
426426 true => Some ( match qself_is_none {
427427 true => hir:: DelegationSelfTyPropagationKind :: SelfParam ,
428428 false => match qself_is_infer {
0 commit comments