@@ -3136,23 +3136,20 @@ fn item_trait(
3136
3136
// FIXME: we should be using a derived_id for the Anchors here
3137
3137
write ! ( w, "{{\n " ) ?;
3138
3138
for t in & types {
3139
- write ! ( w, " " ) ?;
3140
3139
render_assoc_item ( w, t, AssocItemLink :: Anchor ( None ) , ItemType :: Trait ) ?;
3141
3140
write ! ( w, ";\n " ) ?;
3142
3141
}
3143
3142
if !types. is_empty ( ) && !consts. is_empty ( ) {
3144
3143
w. write_str ( "\n " ) ?;
3145
3144
}
3146
3145
for t in & consts {
3147
- write ! ( w, " " ) ?;
3148
3146
render_assoc_item ( w, t, AssocItemLink :: Anchor ( None ) , ItemType :: Trait ) ?;
3149
3147
write ! ( w, ";\n " ) ?;
3150
3148
}
3151
3149
if !consts. is_empty ( ) && !required. is_empty ( ) {
3152
3150
w. write_str ( "\n " ) ?;
3153
3151
}
3154
3152
for ( pos, m) in required. iter ( ) . enumerate ( ) {
3155
- write ! ( w, " " ) ?;
3156
3153
render_assoc_item ( w, m, AssocItemLink :: Anchor ( None ) , ItemType :: Trait ) ?;
3157
3154
write ! ( w, ";\n " ) ?;
3158
3155
@@ -3164,7 +3161,6 @@ fn item_trait(
3164
3161
w. write_str ( "\n " ) ?;
3165
3162
}
3166
3163
for ( pos, m) in provided. iter ( ) . enumerate ( ) {
3167
- write ! ( w, " " ) ?;
3168
3164
render_assoc_item ( w, m, AssocItemLink :: Anchor ( None ) , ItemType :: Trait ) ?;
3169
3165
match m. inner {
3170
3166
clean:: MethodItem ( ref inner) if !inner. generics . where_predicates . is_empty ( ) => {
@@ -3473,8 +3469,9 @@ fn render_assoc_item(w: &mut fmt::Formatter<'_>,
3473
3469
( 0 , true )
3474
3470
} ;
3475
3471
render_attributes ( w, meth) ?;
3476
- write ! ( w, "{}{}{}{}{}{}fn <a href='{href}' class='fnname'>{name}</a>\
3472
+ write ! ( w, "{}{}{}{}{}{}{} fn <a href='{href}' class='fnname'>{name}</a>\
3477
3473
{generics}{decl}{where_clause}",
3474
+ if parent == ItemType :: Trait { " " } else { "" } ,
3478
3475
VisSpace ( & meth. visibility) ,
3479
3476
ConstnessSpace ( header. constness) ,
3480
3477
UnsafetySpace ( header. unsafety) ,
@@ -3775,7 +3772,7 @@ const ATTRIBUTE_WHITELIST: &'static [&'static str] = &[
3775
3772
"non_exhaustive"
3776
3773
] ;
3777
3774
3778
- fn render_attributes ( w : & mut fmt:: Formatter < ' _ > , it : & clean:: Item ) -> fmt:: Result {
3775
+ fn render_attributes ( w : & mut dyn fmt:: Write , it : & clean:: Item ) -> fmt:: Result {
3779
3776
let mut attrs = String :: new ( ) ;
3780
3777
3781
3778
for attr in & it. attrs . other_attrs {
0 commit comments