diff --git a/src/librustdoc/config.rs b/src/librustdoc/config.rs index 959f83a021139..611baa6b1c844 100644 --- a/src/librustdoc/config.rs +++ b/src/librustdoc/config.rs @@ -273,6 +273,8 @@ crate struct RenderOptions { crate call_locations: AllCallLocations, /// If `true`, Context::init will not emit shared files. crate no_emit_shared: bool, + /// If `true`, "Methods From Deref" will be displayed after all other sections. + crate show_deref_methods_last: bool, } #[derive(Copy, Clone, Debug, PartialEq, Eq)] @@ -654,6 +656,7 @@ impl Options { let generate_link_to_definition = matches.opt_present("generate-link-to-definition"); let extern_html_root_takes_precedence = matches.opt_present("extern-html-root-takes-precedence"); + let show_deref_methods_last = matches.opt_present("show-deref-methods-last"); if generate_link_to_definition && (show_coverage || output_format != OutputFormat::Html) { diag.struct_err( @@ -731,6 +734,7 @@ impl Options { generate_link_to_definition, call_locations, no_emit_shared: false, + show_deref_methods_last, }, crate_name, output_format, diff --git a/src/librustdoc/html/render/context.rs b/src/librustdoc/html/render/context.rs index 4f3455a92083a..18edfc88f6cc2 100644 --- a/src/librustdoc/html/render/context.rs +++ b/src/librustdoc/html/render/context.rs @@ -124,6 +124,8 @@ crate struct SharedContext<'tcx> { crate cache: Cache, crate call_locations: AllCallLocations, + /// If `true`, "Methods From Deref" will be displayed after all other sections. + crate show_deref_methods_last: bool, } impl SharedContext<'_> { @@ -393,6 +395,7 @@ impl<'tcx> FormatRenderer<'tcx> for Context<'tcx> { generate_link_to_definition, call_locations, no_emit_shared, + show_deref_methods_last, .. } = options; @@ -477,6 +480,7 @@ impl<'tcx> FormatRenderer<'tcx> for Context<'tcx> { span_correspondance_map: matches, cache, call_locations, + show_deref_methods_last, }; // Add the default themes to the `Vec` of stylepaths diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs index dda7490493197..423ad85653f25 100644 --- a/src/librustdoc/html/render/mod.rs +++ b/src/librustdoc/html/render/mod.rs @@ -1097,12 +1097,18 @@ fn render_assoc_items_inner( } if !traits.is_empty() { - let deref_impl = - traits.iter().find(|t| t.trait_did() == cx.tcx().lang_items().deref_trait()); - if let Some(impl_) = deref_impl { - let has_deref_mut = - traits.iter().any(|t| t.trait_did() == cx.tcx().lang_items().deref_mut_trait()); - render_deref_methods(w, cx, impl_, containing_item, has_deref_mut, derefs); + let mut deref_methods = |w: &mut Buffer| { + let deref_impl = + traits.iter().find(|t| t.trait_did() == cx.tcx().lang_items().deref_trait()); + if let Some(impl_) = deref_impl { + let has_deref_mut = + traits.iter().any(|t| t.trait_did() == cx.tcx().lang_items().deref_mut_trait()); + render_deref_methods(w, cx, impl_, containing_item, has_deref_mut, derefs); + } + }; + + if !cx.shared.show_deref_methods_last { + deref_methods(w); } // If we were already one level into rendering deref methods, we don't want to render @@ -1153,6 +1159,10 @@ fn render_assoc_items_inner( render_impls(cx, w, &blanket_impl, containing_item); w.write_str(""); } + + if cx.shared.show_deref_methods_last { + deref_methods(w); + } } } @@ -2002,12 +2012,18 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) { } if v.iter().any(|i| i.inner_impl().trait_.is_some()) { - if let Some(impl_) = - v.iter().find(|i| i.trait_did() == cx.tcx().lang_items().deref_trait()) - { - let mut derefs = FxHashSet::default(); - derefs.insert(did); - sidebar_deref_methods(cx, out, impl_, v, &mut derefs); + let deref_methods = |out: &mut Buffer| { + if let Some(impl_) = + v.iter().find(|i| i.trait_did() == cx.tcx().lang_items().deref_trait()) + { + let mut derefs = FxHashSet::default(); + derefs.insert(did); + sidebar_deref_methods(cx, out, impl_, v, &mut derefs); + } + }; + + if !cx.shared.show_deref_methods_last { + deref_methods(out); } let format_impls = |impls: Vec<&Impl>| { @@ -2076,6 +2092,10 @@ fn sidebar_assoc_items(cx: &Context<'_>, out: &mut Buffer, it: &clean::Item) { ); write_sidebar_links(out, blanket_format); } + + if cx.shared.show_deref_methods_last { + deref_methods(out); + } } } } diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index d7741c4fde239..b4ebd13f5943e 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -626,6 +626,13 @@ fn opts() -> Vec { "path to function call information (for displaying examples in the documentation)", ) }), + unstable("show-deref-methods-last", |o| { + o.optflagmulti( + "", + "show-deref-methods-last", + "display trait implementations before methods from deref", + ) + }), // deprecated / removed options stable("plugin-path", |o| { o.optmulti(