We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb2ff0 commit 9ccd3acCopy full SHA for 9ccd3ac
src/librustdoc/clean/mod.rs
@@ -480,7 +480,6 @@ impl Clean<Item> for doctree::Module {
480
items.extend(self.traits.iter().map(|x| x.clean(cx)));
481
items.extend(self.impls.iter().flat_map(|x| x.clean(cx)));
482
items.extend(self.macros.iter().map(|x| x.clean(cx)));
483
- items.extend(self.def_traits.iter().map(|x| x.clean(cx)));
484
485
// determine if we should display the inner contents or
486
// the outer `mod` item for the source code.
src/librustdoc/doctree.rs
@@ -72,7 +72,6 @@ impl Module {
72
constants : Vec::new(),
73
traits : Vec::new(),
74
impls : Vec::new(),
75
- def_traits : Vec::new(),
76
foreigns : Vec::new(),
77
macros : Vec::new(),
78
is_crate : false,
0 commit comments