@@ -332,7 +332,6 @@ struct AllTypes {
332
332
macros : FxHashSet < ItemEntry > ,
333
333
functions : FxHashSet < ItemEntry > ,
334
334
type_aliases : FxHashSet < ItemEntry > ,
335
- opaque_tys : FxHashSet < ItemEntry > ,
336
335
statics : FxHashSet < ItemEntry > ,
337
336
constants : FxHashSet < ItemEntry > ,
338
337
attribute_macros : FxHashSet < ItemEntry > ,
@@ -352,7 +351,6 @@ impl AllTypes {
352
351
macros : new_set ( 100 ) ,
353
352
functions : new_set ( 100 ) ,
354
353
type_aliases : new_set ( 100 ) ,
355
- opaque_tys : new_set ( 100 ) ,
356
354
statics : new_set ( 100 ) ,
357
355
constants : new_set ( 100 ) ,
358
356
attribute_macros : new_set ( 100 ) ,
@@ -415,9 +413,6 @@ impl AllTypes {
415
413
if !self . type_aliases . is_empty ( ) {
416
414
sections. insert ( ItemSection :: TypeAliases ) ;
417
415
}
418
- if !self . opaque_tys . is_empty ( ) {
419
- sections. insert ( ItemSection :: OpaqueTypes ) ;
420
- }
421
416
if !self . statics . is_empty ( ) {
422
417
sections. insert ( ItemSection :: Statics ) ;
423
418
}
@@ -471,7 +466,6 @@ impl AllTypes {
471
466
print_entries ( f, & self . functions , ItemSection :: Functions ) ;
472
467
print_entries ( f, & self . type_aliases , ItemSection :: TypeAliases ) ;
473
468
print_entries ( f, & self . trait_aliases , ItemSection :: TraitAliases ) ;
474
- print_entries ( f, & self . opaque_tys , ItemSection :: OpaqueTypes ) ;
475
469
print_entries ( f, & self . statics , ItemSection :: Statics ) ;
476
470
print_entries ( f, & self . constants , ItemSection :: Constants ) ;
477
471
}
@@ -2174,7 +2168,6 @@ pub(crate) enum ItemSection {
2174
2168
AssociatedConstants ,
2175
2169
ForeignTypes ,
2176
2170
Keywords ,
2177
- OpaqueTypes ,
2178
2171
AttributeMacros ,
2179
2172
DeriveMacros ,
2180
2173
TraitAliases ,
@@ -2207,7 +2200,6 @@ impl ItemSection {
2207
2200
AssociatedConstants ,
2208
2201
ForeignTypes ,
2209
2202
Keywords ,
2210
- OpaqueTypes ,
2211
2203
AttributeMacros ,
2212
2204
DeriveMacros ,
2213
2205
TraitAliases ,
@@ -2237,7 +2229,6 @@ impl ItemSection {
2237
2229
Self :: AssociatedConstants => "associated-consts" ,
2238
2230
Self :: ForeignTypes => "foreign-types" ,
2239
2231
Self :: Keywords => "keywords" ,
2240
- Self :: OpaqueTypes => "opaque-types" ,
2241
2232
Self :: AttributeMacros => "attributes" ,
2242
2233
Self :: DeriveMacros => "derives" ,
2243
2234
Self :: TraitAliases => "trait-aliases" ,
@@ -2267,7 +2258,6 @@ impl ItemSection {
2267
2258
Self :: AssociatedConstants => "Associated Constants" ,
2268
2259
Self :: ForeignTypes => "Foreign Types" ,
2269
2260
Self :: Keywords => "Keywords" ,
2270
- Self :: OpaqueTypes => "Opaque Types" ,
2271
2261
Self :: AttributeMacros => "Attribute Macros" ,
2272
2262
Self :: DeriveMacros => "Derive Macros" ,
2273
2263
Self :: TraitAliases => "Trait Aliases" ,
0 commit comments