@@ -1148,9 +1148,9 @@ fn render_assoc_items_inner(
11481148 }
11491149
11501150 let ( synthetic, concrete) : ( Vec < & & Impl > , Vec < & & Impl > ) =
1151- traits. iter ( ) . partition ( |t| t. inner_impl ( ) . is_auto_impl ( ) ) ;
1151+ traits. iter ( ) . partition ( |t| t. inner_impl ( ) . kind . is_auto ( ) ) ;
11521152 let ( blanket_impl, concrete) : ( Vec < & & Impl > , _ ) =
1153- concrete. into_iter ( ) . partition ( |t| t. inner_impl ( ) . is_blanket_impl ( ) ) ;
1153+ concrete. into_iter ( ) . partition ( |t| t. inner_impl ( ) . kind . is_blanket ( ) ) ;
11541154
11551155 let mut impls = Buffer :: empty_from ( w) ;
11561156 render_impls ( cx, & mut impls, & concrete, containing_item) ;
@@ -2059,9 +2059,9 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) {
20592059 } ;
20602060
20612061 let ( synthetic, concrete) : ( Vec < & Impl > , Vec < & Impl > ) =
2062- v. iter ( ) . partition :: < Vec < _ > , _ > ( |i| i. inner_impl ( ) . is_auto_impl ( ) ) ;
2062+ v. iter ( ) . partition :: < Vec < _ > , _ > ( |i| i. inner_impl ( ) . kind . is_auto ( ) ) ;
20632063 let ( blanket_impl, concrete) : ( Vec < & Impl > , Vec < & Impl > ) =
2064- concrete. into_iter ( ) . partition :: < Vec < _ > , _ > ( |i| i. inner_impl ( ) . is_blanket_impl ( ) ) ;
2064+ concrete. into_iter ( ) . partition :: < Vec < _ > , _ > ( |i| i. inner_impl ( ) . kind . is_blanket ( ) ) ;
20652065
20662066 let concrete_format = format_impls ( concrete) ;
20672067 let synthetic_format = format_impls ( synthetic) ;
0 commit comments