From ec4f79ff6c997b4144a59fbfb145933c1e3ff593 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 23 May 2014 16:16:35 -0700 Subject: [PATCH] rustdoc: Don't show reexported enum variants For now just assume that the enum type itself is reexported. --- src/librustdoc/clean.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/librustdoc/clean.rs b/src/librustdoc/clean.rs index 77b835b232d..94ccd3ac40e 100644 --- a/src/librustdoc/clean.rs +++ b/src/librustdoc/clean.rs @@ -1571,6 +1571,9 @@ fn try_inline(id: ast::NodeId) -> Option> { ret.extend(build_impls(tcx, did).move_iter()); build_type(tcx, did) } + // Assume that the enum type is reexported next to the variant, and + // variants don't show up in documentation specially. + ast::DefVariant(..) => return Some(Vec::new()), _ => return None, }; let fqn = csearch::get_item_path(tcx, did); -- 2.44.0