@@ -1148,9 +1148,9 @@ fn render_assoc_items_inner(
1148
1148
}
1149
1149
1150
1150
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 ( ) ) ;
1152
1152
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 ( ) ) ;
1154
1154
1155
1155
let mut impls = Buffer :: empty_from ( w) ;
1156
1156
render_impls ( cx, & mut impls, & concrete, containing_item) ;
@@ -2059,9 +2059,9 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) {
2059
2059
} ;
2060
2060
2061
2061
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 ( ) ) ;
2063
2063
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 ( ) ) ;
2065
2065
2066
2066
let concrete_format = format_impls ( concrete) ;
2067
2067
let synthetic_format = format_impls ( synthetic) ;
0 commit comments