We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6a155 commit 29efeb7Copy full SHA for 29efeb7
src/librustdoc/clean/inline.rs
@@ -341,18 +341,6 @@ pub fn build_impl(
341
return;
342
}
343
344
-
345
- // Skip foreign unstable traits from lists of trait implementations and
346
- // such. This helps prevent dependencies of the standard library, for
347
- // example, from getting documented as "traits `u32` implements" which
348
- // isn't really too helpful.
349
- if let Some(trait_did) = associated_trait {
350
- if let Some(stab) = cx.tcx.lookup_stability(trait_did.def_id) {
351
- if stab.level.is_unstable() {
352
- return;
353
- }
354
355
356
357
358
let for_ = if let Some(did) = did.as_local() {
0 commit comments