From: Alex Crichton Date: Fri, 23 May 2014 23:16:35 +0000 (-0700) Subject: rustdoc: Don't show reexported enum variants X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=ec4f79ff6c997b4144a59fbfb145933c1e3ff593;p=rust.git rustdoc: Don't show reexported enum variants For now just assume that the enum type itself is reexported. --- 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);