@@ -488,7 +488,7 @@ fn settings(root_path: &str, suffix: &str, themes: &[StylePath]) -> Result<Strin
488488 . into ( ) ,
489489 ( "auto-hide-large-items" , "Auto-hide item contents for large items." , true ) . into ( ) ,
490490 ( "auto-hide-method-docs" , "Auto-hide item methods' documentation" , false ) . into ( ) ,
491- ( "auto-hide-trait-implementations" , "Auto-hide trait implementation documentation" , true )
491+ ( "auto-hide-trait-implementations" , "Auto-hide trait implementation documentation" , false )
492492 . into ( ) ,
493493 ( "auto-collapse-implementors" , "Auto-hide implementors of a trait" , true ) . into ( ) ,
494494 ( "go-to-only-result" , "Directly go to item in search if there is only one result" , false )
@@ -1543,15 +1543,10 @@ fn render_impl(
15431543 }
15441544 }
15451545 if render_mode == RenderMode :: Normal {
1546- let is_implementing_trait = i. inner_impl ( ) . trait_ . is_some ( ) ;
15471546 let toggled = !impl_items. is_empty ( ) || !default_impl_items. is_empty ( ) ;
15481547 if toggled {
15491548 close_tags. insert_str ( 0 , "</details>" ) ;
1550- if is_implementing_trait {
1551- write ! ( w, "<details class=\" rustdoc-toggle implementors-toggle\" >" ) ;
1552- } else {
1553- write ! ( w, "<details class=\" rustdoc-toggle implementors-toggle\" open>" ) ;
1554- }
1549+ write ! ( w, "<details class=\" rustdoc-toggle implementors-toggle\" open>" ) ;
15551550 }
15561551 if toggled {
15571552 write ! ( w, "<summary>" )
0 commit comments