]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/render.rs
c67064139426706b733ce69ccfb6b4615d086433
[rust.git] / src / librustdoc / html / render.rs
1 // ignore-tidy-filelength
2
3 //! Rustdoc's HTML rendering module.
4 //!
5 //! This modules contains the bulk of the logic necessary for rendering a
6 //! rustdoc `clean::Crate` instance to a set of static HTML pages. This
7 //! rendering process is largely driven by the `format!` syntax extension to
8 //! perform all I/O into files and streams.
9 //!
10 //! The rendering process is largely driven by the `Context` and `Cache`
11 //! structures. The cache is pre-populated by crawling the crate in question,
12 //! and then it is shared among the various rendering threads. The cache is meant
13 //! to be a fairly large structure not implementing `Clone` (because it's shared
14 //! among threads). The context, however, should be a lightweight structure. This
15 //! is cloned per-thread and contains information about what is currently being
16 //! rendered.
17 //!
18 //! In order to speed up rendering (mostly because of markdown rendering), the
19 //! rendering process has been parallelized. This parallelization is only
20 //! exposed through the `crate` method on the context, and then also from the
21 //! fact that the shared cache is stored in TLS (and must be accessed as such).
22 //!
23 //! In addition to rendering the crate itself, this module is also responsible
24 //! for creating the corresponding search index and source file renderings.
25 //! These threads are not parallelized (they haven't been a bottleneck yet), and
26 //! both occur before the crate is rendered.
27
28 use std::borrow::Cow;
29 use std::cell::{Cell, RefCell};
30 use std::cmp::Ordering;
31 use std::collections::{BTreeMap, VecDeque};
32 use std::default::Default;
33 use std::error;
34
35 use std::ffi::OsStr;
36 use std::fmt::{self, Formatter, Write};
37 use std::fs::{self, File};
38 use std::io::prelude::*;
39 use std::io::{self, BufReader};
40 use std::path::{Component, Path, PathBuf};
41 use std::rc::Rc;
42 use std::str;
43 use std::sync::Arc;
44
45 use rustc::middle::privacy::AccessLevels;
46 use rustc::middle::stability;
47 use rustc_ast_pretty::pprust;
48 use rustc_data_structures::flock;
49 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
50 use rustc_feature::UnstableFeatures;
51 use rustc_hir as hir;
52 use rustc_hir::def_id::DefId;
53 use rustc_hir::Mutability;
54 use rustc_span::edition::Edition;
55 use rustc_span::hygiene::MacroKind;
56 use rustc_span::source_map::FileName;
57 use rustc_span::symbol::{sym, Symbol};
58 use serde::ser::SerializeSeq;
59 use serde::{Serialize, Serializer};
60 use syntax::ast;
61
62 use crate::clean::{self, AttributesExt, Deprecation, GetDefId, SelfTy};
63 use crate::config::RenderOptions;
64 use crate::docfs::{DocFS, ErrorStorage, PathError};
65 use crate::doctree;
66 use crate::html::escape::Escape;
67 use crate::html::format::fmt_impl_for_trait_page;
68 use crate::html::format::Function;
69 use crate::html::format::{href, print_default_space, print_generic_bounds, WhereClause};
70 use crate::html::format::{print_abi_with_space, Buffer, PrintWithSpace};
71 use crate::html::item_type::ItemType;
72 use crate::html::markdown::{self, ErrorCodes, IdMap, Markdown, MarkdownHtml, MarkdownSummaryLine};
73 use crate::html::sources;
74 use crate::html::{highlight, layout, static_files};
75
76 use minifier;
77
78 #[cfg(test)]
79 mod tests;
80
81 mod cache;
82
83 use cache::Cache;
84 crate use cache::ExternalLocation::{self, *};
85
86 /// A pair of name and its optional document.
87 pub type NameDoc = (String, Option<String>);
88
89 crate fn ensure_trailing_slash(v: &str) -> impl fmt::Display + '_ {
90     crate::html::format::display_fn(move |f| {
91         if !v.ends_with("/") && !v.is_empty() { write!(f, "{}/", v) } else { write!(f, "{}", v) }
92     })
93 }
94
95 #[derive(Debug)]
96 pub struct Error {
97     pub file: PathBuf,
98     pub error: io::Error,
99 }
100
101 impl error::Error for Error {}
102
103 impl std::fmt::Display for Error {
104     fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
105         let file = self.file.display().to_string();
106         if file.is_empty() {
107             write!(f, "{}", self.error)
108         } else {
109             write!(f, "\"{}\": {}", self.file.display(), self.error)
110         }
111     }
112 }
113
114 impl PathError for Error {
115     fn new<P: AsRef<Path>>(e: io::Error, path: P) -> Error {
116         Error { file: path.as_ref().to_path_buf(), error: e }
117     }
118 }
119
120 macro_rules! try_none {
121     ($e:expr, $file:expr) => {{
122         use std::io;
123         match $e {
124             Some(e) => e,
125             None => {
126                 return Err(Error::new(io::Error::new(io::ErrorKind::Other, "not found"), $file));
127             }
128         }
129     }};
130 }
131
132 macro_rules! try_err {
133     ($e:expr, $file:expr) => {{
134         match $e {
135             Ok(e) => e,
136             Err(e) => return Err(Error::new(e, $file)),
137         }
138     }};
139 }
140
141 /// Major driving force in all rustdoc rendering. This contains information
142 /// about where in the tree-like hierarchy rendering is occurring and controls
143 /// how the current page is being rendered.
144 ///
145 /// It is intended that this context is a lightweight object which can be fairly
146 /// easily cloned because it is cloned per work-job (about once per item in the
147 /// rustdoc tree).
148 #[derive(Clone)]
149 struct Context {
150     /// Current hierarchy of components leading down to what's currently being
151     /// rendered
152     pub current: Vec<String>,
153     /// The current destination folder of where HTML artifacts should be placed.
154     /// This changes as the context descends into the module hierarchy.
155     pub dst: PathBuf,
156     /// A flag, which when `true`, will render pages which redirect to the
157     /// real location of an item. This is used to allow external links to
158     /// publicly reused items to redirect to the right location.
159     pub render_redirect_pages: bool,
160     /// The map used to ensure all generated 'id=' attributes are unique.
161     id_map: Rc<RefCell<IdMap>>,
162     pub shared: Arc<SharedContext>,
163     pub cache: Arc<Cache>,
164 }
165
166 crate struct SharedContext {
167     /// The path to the crate root source minus the file name.
168     /// Used for simplifying paths to the highlighted source code files.
169     pub src_root: PathBuf,
170     /// This describes the layout of each page, and is not modified after
171     /// creation of the context (contains info like the favicon and added html).
172     pub layout: layout::Layout,
173     /// This flag indicates whether `[src]` links should be generated or not. If
174     /// the source files are present in the html rendering, then this will be
175     /// `true`.
176     pub include_sources: bool,
177     /// The local file sources we've emitted and their respective url-paths.
178     pub local_sources: FxHashMap<PathBuf, String>,
179     /// Whether the collapsed pass ran
180     pub collapsed: bool,
181     /// The base-URL of the issue tracker for when an item has been tagged with
182     /// an issue number.
183     pub issue_tracker_base_url: Option<String>,
184     /// The directories that have already been created in this doc run. Used to reduce the number
185     /// of spurious `create_dir_all` calls.
186     pub created_dirs: RefCell<FxHashSet<PathBuf>>,
187     /// This flag indicates whether listings of modules (in the side bar and documentation itself)
188     /// should be ordered alphabetically or in order of appearance (in the source code).
189     pub sort_modules_alphabetically: bool,
190     /// Additional themes to be added to the generated docs.
191     pub themes: Vec<PathBuf>,
192     /// Suffix to be added on resource files (if suffix is "-v2" then "light.css" becomes
193     /// "light-v2.css").
194     pub resource_suffix: String,
195     /// Optional path string to be used to load static files on output pages. If not set, uses
196     /// combinations of `../` to reach the documentation root.
197     pub static_root_path: Option<String>,
198     /// Option disabled by default to generate files used by RLS and some other tools.
199     pub generate_redirect_pages: bool,
200     /// The fs handle we are working with.
201     pub fs: DocFS,
202     /// The default edition used to parse doctests.
203     pub edition: Edition,
204     pub codes: ErrorCodes,
205     playground: Option<markdown::Playground>,
206 }
207
208 impl Context {
209     fn path(&self, filename: &str) -> PathBuf {
210         // We use splitn vs Path::extension here because we might get a filename
211         // like `style.min.css` and we want to process that into
212         // `style-suffix.min.css`.  Path::extension would just return `css`
213         // which would result in `style.min-suffix.css` which isn't what we
214         // want.
215         let mut iter = filename.splitn(2, '.');
216         let base = iter.next().unwrap();
217         let ext = iter.next().unwrap();
218         let filename = format!("{}{}.{}", base, self.shared.resource_suffix, ext,);
219         self.dst.join(&filename)
220     }
221 }
222
223 impl SharedContext {
224     crate fn ensure_dir(&self, dst: &Path) -> Result<(), Error> {
225         let mut dirs = self.created_dirs.borrow_mut();
226         if !dirs.contains(dst) {
227             try_err!(self.fs.create_dir_all(dst), dst);
228             dirs.insert(dst.to_path_buf());
229         }
230
231         Ok(())
232     }
233
234     /// Based on whether the `collapse-docs` pass was run, return either the `doc_value` or the
235     /// `collapsed_doc_value` of the given item.
236     pub fn maybe_collapsed_doc_value<'a>(&self, item: &'a clean::Item) -> Option<Cow<'a, str>> {
237         if self.collapsed {
238             item.collapsed_doc_value().map(|s| s.into())
239         } else {
240             item.doc_value().map(|s| s.into())
241         }
242     }
243 }
244
245 /// Metadata about implementations for a type or trait.
246 #[derive(Clone, Debug)]
247 pub struct Impl {
248     pub impl_item: clean::Item,
249 }
250
251 impl Impl {
252     fn inner_impl(&self) -> &clean::Impl {
253         match self.impl_item.inner {
254             clean::ImplItem(ref impl_) => impl_,
255             _ => panic!("non-impl item found in impl"),
256         }
257     }
258
259     fn trait_did(&self) -> Option<DefId> {
260         self.inner_impl().trait_.def_id()
261     }
262 }
263
264 /// Temporary storage for data obtained during `RustdocVisitor::clean()`.
265 /// Later on moved into `CACHE_KEY`.
266 #[derive(Default)]
267 pub struct RenderInfo {
268     pub inlined: FxHashSet<DefId>,
269     pub external_paths: crate::core::ExternalPaths,
270     pub exact_paths: FxHashMap<DefId, Vec<String>>,
271     pub access_levels: AccessLevels<DefId>,
272     pub deref_trait_did: Option<DefId>,
273     pub deref_mut_trait_did: Option<DefId>,
274     pub owned_box_did: Option<DefId>,
275 }
276
277 // Helper structs for rendering items/sidebars and carrying along contextual
278 // information
279
280 /// Struct representing one entry in the JS search index. These are all emitted
281 /// by hand to a large JS file at the end of cache-creation.
282 #[derive(Debug)]
283 struct IndexItem {
284     ty: ItemType,
285     name: String,
286     path: String,
287     desc: String,
288     parent: Option<DefId>,
289     parent_idx: Option<usize>,
290     search_type: Option<IndexItemFunctionType>,
291 }
292
293 impl Serialize for IndexItem {
294     fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
295     where
296         S: Serializer,
297     {
298         assert_eq!(self.parent.is_some(), self.parent_idx.is_some());
299
300         (self.ty, &self.name, &self.path, &self.desc, self.parent_idx, &self.search_type)
301             .serialize(serializer)
302     }
303 }
304
305 /// A type used for the search index.
306 #[derive(Debug)]
307 struct Type {
308     name: Option<String>,
309     generics: Option<Vec<String>>,
310 }
311
312 impl Serialize for Type {
313     fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
314     where
315         S: Serializer,
316     {
317         if let Some(name) = &self.name {
318             let mut seq = serializer.serialize_seq(None)?;
319             seq.serialize_element(&name)?;
320             if let Some(generics) = &self.generics {
321                 seq.serialize_element(&generics)?;
322             }
323             seq.end()
324         } else {
325             serializer.serialize_none()
326         }
327     }
328 }
329
330 /// Full type of functions/methods in the search index.
331 #[derive(Debug)]
332 struct IndexItemFunctionType {
333     inputs: Vec<Type>,
334     output: Option<Vec<Type>>,
335 }
336
337 impl Serialize for IndexItemFunctionType {
338     fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
339     where
340         S: Serializer,
341     {
342         // If we couldn't figure out a type, just write `null`.
343         let mut iter = self.inputs.iter();
344         if match self.output {
345             Some(ref output) => iter.chain(output.iter()).any(|ref i| i.name.is_none()),
346             None => iter.any(|ref i| i.name.is_none()),
347         } {
348             serializer.serialize_none()
349         } else {
350             let mut seq = serializer.serialize_seq(None)?;
351             seq.serialize_element(&self.inputs)?;
352             if let Some(output) = &self.output {
353                 if output.len() > 1 {
354                     seq.serialize_element(&output)?;
355                 } else {
356                     seq.serialize_element(&output[0])?;
357                 }
358             }
359             seq.end()
360         }
361     }
362 }
363
364 thread_local!(static CACHE_KEY: RefCell<Arc<Cache>> = Default::default());
365 thread_local!(pub static CURRENT_DEPTH: Cell<usize> = Cell::new(0));
366
367 pub fn initial_ids() -> Vec<String> {
368     [
369         "main",
370         "search",
371         "help",
372         "TOC",
373         "render-detail",
374         "associated-types",
375         "associated-const",
376         "required-methods",
377         "provided-methods",
378         "implementors",
379         "synthetic-implementors",
380         "implementors-list",
381         "synthetic-implementors-list",
382         "methods",
383         "deref-methods",
384         "implementations",
385     ]
386     .iter()
387     .map(|id| (String::from(*id)))
388     .collect()
389 }
390
391 /// Generates the documentation for `crate` into the directory `dst`
392 pub fn run(
393     mut krate: clean::Crate,
394     options: RenderOptions,
395     renderinfo: RenderInfo,
396     diag: &rustc_errors::Handler,
397     edition: Edition,
398 ) -> Result<(), Error> {
399     // need to save a copy of the options for rendering the index page
400     let md_opts = options.clone();
401     let RenderOptions {
402         output,
403         external_html,
404         id_map,
405         playground_url,
406         sort_modules_alphabetically,
407         themes,
408         extension_css,
409         extern_html_root_urls,
410         resource_suffix,
411         static_root_path,
412         generate_search_filter,
413         generate_redirect_pages,
414         ..
415     } = options;
416
417     let src_root = match krate.src {
418         FileName::Real(ref p) => match p.parent() {
419             Some(p) => p.to_path_buf(),
420             None => PathBuf::new(),
421         },
422         _ => PathBuf::new(),
423     };
424     let mut errors = Arc::new(ErrorStorage::new());
425     // If user passed in `--playground-url` arg, we fill in crate name here
426     let mut playground = None;
427     if let Some(url) = playground_url {
428         playground = Some(markdown::Playground { crate_name: Some(krate.name.clone()), url });
429     }
430     let mut layout = layout::Layout {
431         logo: String::new(),
432         favicon: String::new(),
433         external_html,
434         krate: krate.name.clone(),
435         css_file_extension: extension_css,
436         generate_search_filter,
437     };
438     let mut issue_tracker_base_url = None;
439     let mut include_sources = true;
440
441     // Crawl the crate attributes looking for attributes which control how we're
442     // going to emit HTML
443     if let Some(attrs) = krate.module.as_ref().map(|m| &m.attrs) {
444         for attr in attrs.lists(sym::doc) {
445             match (attr.name_or_empty(), attr.value_str()) {
446                 (sym::html_favicon_url, Some(s)) => {
447                     layout.favicon = s.to_string();
448                 }
449                 (sym::html_logo_url, Some(s)) => {
450                     layout.logo = s.to_string();
451                 }
452                 (sym::html_playground_url, Some(s)) => {
453                     playground = Some(markdown::Playground {
454                         crate_name: Some(krate.name.clone()),
455                         url: s.to_string(),
456                     });
457                 }
458                 (sym::issue_tracker_base_url, Some(s)) => {
459                     issue_tracker_base_url = Some(s.to_string());
460                 }
461                 (sym::html_no_source, None) if attr.is_word() => {
462                     include_sources = false;
463                 }
464                 _ => {}
465             }
466         }
467     }
468     let mut scx = SharedContext {
469         collapsed: krate.collapsed,
470         src_root,
471         include_sources,
472         local_sources: Default::default(),
473         issue_tracker_base_url,
474         layout,
475         created_dirs: Default::default(),
476         sort_modules_alphabetically,
477         themes,
478         resource_suffix,
479         static_root_path,
480         generate_redirect_pages,
481         fs: DocFS::new(&errors),
482         edition,
483         codes: ErrorCodes::from(UnstableFeatures::from_environment().is_nightly_build()),
484         playground,
485     };
486
487     let dst = output;
488     scx.ensure_dir(&dst)?;
489     krate = sources::render(&dst, &mut scx, krate)?;
490     let (new_crate, index, cache) =
491         Cache::from_krate(renderinfo, &extern_html_root_urls, &dst, krate);
492     krate = new_crate;
493     let cache = Arc::new(cache);
494     let mut cx = Context {
495         current: Vec::new(),
496         dst,
497         render_redirect_pages: false,
498         id_map: Rc::new(RefCell::new(id_map)),
499         shared: Arc::new(scx),
500         cache: cache.clone(),
501     };
502
503     // Freeze the cache now that the index has been built. Put an Arc into TLS
504     // for future parallelization opportunities
505     CACHE_KEY.with(|v| *v.borrow_mut() = cache.clone());
506     CURRENT_DEPTH.with(|s| s.set(0));
507
508     // Write shared runs within a flock; disable thread dispatching of IO temporarily.
509     Arc::get_mut(&mut cx.shared).unwrap().fs.set_sync_only(true);
510     write_shared(&cx, &krate, index, &md_opts, diag)?;
511     Arc::get_mut(&mut cx.shared).unwrap().fs.set_sync_only(false);
512
513     // And finally render the whole crate's documentation
514     let ret = cx.krate(krate);
515     let nb_errors = Arc::get_mut(&mut errors).map_or_else(|| 0, |errors| errors.write_errors(diag));
516     if ret.is_err() {
517         ret
518     } else if nb_errors > 0 {
519         Err(Error::new(io::Error::new(io::ErrorKind::Other, "I/O error"), ""))
520     } else {
521         Ok(())
522     }
523 }
524
525 fn write_shared(
526     cx: &Context,
527     krate: &clean::Crate,
528     search_index: String,
529     options: &RenderOptions,
530     diag: &rustc_errors::Handler,
531 ) -> Result<(), Error> {
532     // Write out the shared files. Note that these are shared among all rustdoc
533     // docs placed in the output directory, so this needs to be a synchronized
534     // operation with respect to all other rustdocs running around.
535     let lock_file = cx.dst.join(".lock");
536     let _lock = try_err!(flock::Lock::new(&lock_file, true, true, true), &lock_file);
537
538     // Add all the static files. These may already exist, but we just
539     // overwrite them anyway to make sure that they're fresh and up-to-date.
540
541     write_minify(
542         &cx.shared.fs,
543         cx.path("rustdoc.css"),
544         static_files::RUSTDOC_CSS,
545         options.enable_minification,
546     )?;
547     write_minify(
548         &cx.shared.fs,
549         cx.path("settings.css"),
550         static_files::SETTINGS_CSS,
551         options.enable_minification,
552     )?;
553     write_minify(
554         &cx.shared.fs,
555         cx.path("noscript.css"),
556         static_files::NOSCRIPT_CSS,
557         options.enable_minification,
558     )?;
559
560     // To avoid "light.css" to be overwritten, we'll first run over the received themes and only
561     // then we'll run over the "official" styles.
562     let mut themes: FxHashSet<String> = FxHashSet::default();
563
564     for entry in &cx.shared.themes {
565         let content = try_err!(fs::read(&entry), &entry);
566         let theme = try_none!(try_none!(entry.file_stem(), &entry).to_str(), &entry);
567         let extension = try_none!(try_none!(entry.extension(), &entry).to_str(), &entry);
568         cx.shared.fs.write(cx.path(&format!("{}.{}", theme, extension)), content.as_slice())?;
569         themes.insert(theme.to_owned());
570     }
571
572     let write = |p, c| cx.shared.fs.write(p, c);
573     if (*cx.shared).layout.logo.is_empty() {
574         write(cx.path("rust-logo.png"), static_files::RUST_LOGO)?;
575     }
576     if (*cx.shared).layout.favicon.is_empty() {
577         write(cx.path("favicon.ico"), static_files::RUST_FAVICON)?;
578     }
579     write(cx.path("brush.svg"), static_files::BRUSH_SVG)?;
580     write(cx.path("wheel.svg"), static_files::WHEEL_SVG)?;
581     write(cx.path("down-arrow.svg"), static_files::DOWN_ARROW_SVG)?;
582     write_minify(
583         &cx.shared.fs,
584         cx.path("light.css"),
585         static_files::themes::LIGHT,
586         options.enable_minification,
587     )?;
588     themes.insert("light".to_owned());
589     write_minify(
590         &cx.shared.fs,
591         cx.path("dark.css"),
592         static_files::themes::DARK,
593         options.enable_minification,
594     )?;
595     themes.insert("dark".to_owned());
596
597     let mut themes: Vec<&String> = themes.iter().collect();
598     themes.sort();
599     // To avoid theme switch latencies as much as possible, we put everything theme related
600     // at the beginning of the html files into another js file.
601     let theme_js = format!(
602         r#"var themes = document.getElementById("theme-choices");
603 var themePicker = document.getElementById("theme-picker");
604
605 function showThemeButtonState() {{
606     themes.style.display = "block";
607     themePicker.style.borderBottomRightRadius = "0";
608     themePicker.style.borderBottomLeftRadius = "0";
609 }}
610
611 function hideThemeButtonState() {{
612     themes.style.display = "none";
613     themePicker.style.borderBottomRightRadius = "3px";
614     themePicker.style.borderBottomLeftRadius = "3px";
615 }}
616
617 function switchThemeButtonState() {{
618     if (themes.style.display === "block") {{
619         hideThemeButtonState();
620     }} else {{
621         showThemeButtonState();
622     }}
623 }};
624
625 function handleThemeButtonsBlur(e) {{
626     var active = document.activeElement;
627     var related = e.relatedTarget;
628
629     if (active.id !== "themePicker" &&
630         (!active.parentNode || active.parentNode.id !== "theme-choices") &&
631         (!related ||
632          (related.id !== "themePicker" &&
633           (!related.parentNode || related.parentNode.id !== "theme-choices")))) {{
634         hideThemeButtonState();
635     }}
636 }}
637
638 themePicker.onclick = switchThemeButtonState;
639 themePicker.onblur = handleThemeButtonsBlur;
640 {}.forEach(function(item) {{
641     var but = document.createElement('button');
642     but.textContent = item;
643     but.onclick = function(el) {{
644         switchTheme(currentTheme, mainTheme, item, true);
645     }};
646     but.onblur = handleThemeButtonsBlur;
647     themes.appendChild(but);
648 }});"#,
649         serde_json::to_string(&themes).unwrap()
650     );
651
652     write_minify(&cx.shared.fs, cx.path("theme.js"), &theme_js, options.enable_minification)?;
653     write_minify(
654         &cx.shared.fs,
655         cx.path("main.js"),
656         static_files::MAIN_JS,
657         options.enable_minification,
658     )?;
659     write_minify(
660         &cx.shared.fs,
661         cx.path("settings.js"),
662         static_files::SETTINGS_JS,
663         options.enable_minification,
664     )?;
665     if cx.shared.include_sources {
666         write_minify(
667             &cx.shared.fs,
668             cx.path("source-script.js"),
669             static_files::sidebar::SOURCE_SCRIPT,
670             options.enable_minification,
671         )?;
672     }
673
674     {
675         write_minify(
676             &cx.shared.fs,
677             cx.path("storage.js"),
678             &format!(
679                 "var resourcesSuffix = \"{}\";{}",
680                 cx.shared.resource_suffix,
681                 static_files::STORAGE_JS
682             ),
683             options.enable_minification,
684         )?;
685     }
686
687     if let Some(ref css) = cx.shared.layout.css_file_extension {
688         let out = cx.path("theme.css");
689         let buffer = try_err!(fs::read_to_string(css), css);
690         if !options.enable_minification {
691             cx.shared.fs.write(&out, &buffer)?;
692         } else {
693             write_minify(&cx.shared.fs, out, &buffer, options.enable_minification)?;
694         }
695     }
696     write_minify(
697         &cx.shared.fs,
698         cx.path("normalize.css"),
699         static_files::NORMALIZE_CSS,
700         options.enable_minification,
701     )?;
702     write(cx.dst.join("FiraSans-Regular.woff"), static_files::fira_sans::REGULAR)?;
703     write(cx.dst.join("FiraSans-Medium.woff"), static_files::fira_sans::MEDIUM)?;
704     write(cx.dst.join("FiraSans-LICENSE.txt"), static_files::fira_sans::LICENSE)?;
705     write(cx.dst.join("SourceSerifPro-Regular.ttf.woff"), static_files::source_serif_pro::REGULAR)?;
706     write(cx.dst.join("SourceSerifPro-Bold.ttf.woff"), static_files::source_serif_pro::BOLD)?;
707     write(cx.dst.join("SourceSerifPro-It.ttf.woff"), static_files::source_serif_pro::ITALIC)?;
708     write(cx.dst.join("SourceSerifPro-LICENSE.md"), static_files::source_serif_pro::LICENSE)?;
709     write(cx.dst.join("SourceCodePro-Regular.woff"), static_files::source_code_pro::REGULAR)?;
710     write(cx.dst.join("SourceCodePro-Semibold.woff"), static_files::source_code_pro::SEMIBOLD)?;
711     write(cx.dst.join("SourceCodePro-LICENSE.txt"), static_files::source_code_pro::LICENSE)?;
712     write(cx.dst.join("LICENSE-MIT.txt"), static_files::LICENSE_MIT)?;
713     write(cx.dst.join("LICENSE-APACHE.txt"), static_files::LICENSE_APACHE)?;
714     write(cx.dst.join("COPYRIGHT.txt"), static_files::COPYRIGHT)?;
715
716     fn collect(path: &Path, krate: &str, key: &str) -> io::Result<(Vec<String>, Vec<String>)> {
717         let mut ret = Vec::new();
718         let mut krates = Vec::new();
719
720         if path.exists() {
721             for line in BufReader::new(File::open(path)?).lines() {
722                 let line = line?;
723                 if !line.starts_with(key) {
724                     continue;
725                 }
726                 if line.starts_with(&format!(r#"{}["{}"]"#, key, krate)) {
727                     continue;
728                 }
729                 ret.push(line.to_string());
730                 krates.push(
731                     line[key.len() + 2..]
732                         .split('"')
733                         .next()
734                         .map(|s| s.to_owned())
735                         .unwrap_or_else(|| String::new()),
736                 );
737             }
738         }
739         Ok((ret, krates))
740     }
741
742     fn show_item(item: &IndexItem, krate: &str) -> String {
743         format!(
744             "{{'crate':'{}','ty':{},'name':'{}','desc':'{}','p':'{}'{}}}",
745             krate,
746             item.ty as usize,
747             item.name,
748             item.desc.replace("'", "\\'"),
749             item.path,
750             if let Some(p) = item.parent_idx { format!(",'parent':{}", p) } else { String::new() }
751         )
752     }
753
754     let dst = cx.dst.join(&format!("aliases{}.js", cx.shared.resource_suffix));
755     {
756         let (mut all_aliases, _) = try_err!(collect(&dst, &krate.name, "ALIASES"), &dst);
757         let mut output = String::with_capacity(100);
758         for (alias, items) in &cx.cache.aliases {
759             if items.is_empty() {
760                 continue;
761             }
762             output.push_str(&format!(
763                 "\"{}\":[{}],",
764                 alias,
765                 items.iter().map(|v| show_item(v, &krate.name)).collect::<Vec<_>>().join(",")
766             ));
767         }
768         all_aliases.push(format!("ALIASES[\"{}\"] = {{{}}};", krate.name, output));
769         all_aliases.sort();
770         let mut v = Buffer::html();
771         writeln!(&mut v, "var ALIASES = {{}};");
772         for aliases in &all_aliases {
773             writeln!(&mut v, "{}", aliases);
774         }
775         cx.shared.fs.write(&dst, v.into_inner().into_bytes())?;
776     }
777
778     use std::ffi::OsString;
779
780     #[derive(Debug)]
781     struct Hierarchy {
782         elem: OsString,
783         children: FxHashMap<OsString, Hierarchy>,
784         elems: FxHashSet<OsString>,
785     }
786
787     impl Hierarchy {
788         fn new(elem: OsString) -> Hierarchy {
789             Hierarchy { elem, children: FxHashMap::default(), elems: FxHashSet::default() }
790         }
791
792         fn to_json_string(&self) -> String {
793             let mut subs: Vec<&Hierarchy> = self.children.values().collect();
794             subs.sort_unstable_by(|a, b| a.elem.cmp(&b.elem));
795             let mut files = self
796                 .elems
797                 .iter()
798                 .map(|s| format!("\"{}\"", s.to_str().expect("invalid osstring conversion")))
799                 .collect::<Vec<_>>();
800             files.sort_unstable_by(|a, b| a.cmp(b));
801             let subs = subs.iter().map(|s| s.to_json_string()).collect::<Vec<_>>().join(",");
802             let dirs =
803                 if subs.is_empty() { String::new() } else { format!(",\"dirs\":[{}]", subs) };
804             let files = files.join(",");
805             let files =
806                 if files.is_empty() { String::new() } else { format!(",\"files\":[{}]", files) };
807             format!(
808                 "{{\"name\":\"{name}\"{dirs}{files}}}",
809                 name = self.elem.to_str().expect("invalid osstring conversion"),
810                 dirs = dirs,
811                 files = files
812             )
813         }
814     }
815
816     if cx.shared.include_sources {
817         let mut hierarchy = Hierarchy::new(OsString::new());
818         for source in cx
819             .shared
820             .local_sources
821             .iter()
822             .filter_map(|p| p.0.strip_prefix(&cx.shared.src_root).ok())
823         {
824             let mut h = &mut hierarchy;
825             let mut elems = source
826                 .components()
827                 .filter_map(|s| match s {
828                     Component::Normal(s) => Some(s.to_owned()),
829                     _ => None,
830                 })
831                 .peekable();
832             loop {
833                 let cur_elem = elems.next().expect("empty file path");
834                 if elems.peek().is_none() {
835                     h.elems.insert(cur_elem);
836                     break;
837                 } else {
838                     let e = cur_elem.clone();
839                     h.children.entry(cur_elem.clone()).or_insert_with(|| Hierarchy::new(e));
840                     h = h.children.get_mut(&cur_elem).expect("not found child");
841                 }
842             }
843         }
844
845         let dst = cx.dst.join(&format!("source-files{}.js", cx.shared.resource_suffix));
846         let (mut all_sources, _krates) = try_err!(collect(&dst, &krate.name, "sourcesIndex"), &dst);
847         all_sources.push(format!(
848             "sourcesIndex[\"{}\"] = {};",
849             &krate.name,
850             hierarchy.to_json_string()
851         ));
852         all_sources.sort();
853         let v = format!(
854             "var N = null;var sourcesIndex = {{}};\n{}\ncreateSourceSidebar();\n",
855             all_sources.join("\n")
856         );
857         cx.shared.fs.write(&dst, v.as_bytes())?;
858     }
859
860     // Update the search index
861     let dst = cx.dst.join(&format!("search-index{}.js", cx.shared.resource_suffix));
862     let (mut all_indexes, mut krates) = try_err!(collect(&dst, &krate.name, "searchIndex"), &dst);
863     all_indexes.push(search_index);
864
865     // Sort the indexes by crate so the file will be generated identically even
866     // with rustdoc running in parallel.
867     all_indexes.sort();
868     {
869         let mut v = String::from("var searchIndex={};\n");
870         v.push_str(&all_indexes.join("\n"));
871         // "addSearchOptions" has to be called first so the crate filtering can be set before the
872         // search might start (if it's set into the URL for example).
873         v.push_str("\naddSearchOptions(searchIndex);initSearch(searchIndex);");
874         cx.shared.fs.write(&dst, &v)?;
875     }
876     if options.enable_index_page {
877         if let Some(index_page) = options.index_page.clone() {
878             let mut md_opts = options.clone();
879             md_opts.output = cx.dst.clone();
880             md_opts.external_html = (*cx.shared).layout.external_html.clone();
881
882             crate::markdown::render(index_page, md_opts, diag, cx.shared.edition);
883         } else {
884             let dst = cx.dst.join("index.html");
885             let page = layout::Page {
886                 title: "Index of crates",
887                 css_class: "mod",
888                 root_path: "./",
889                 static_root_path: cx.shared.static_root_path.as_deref(),
890                 description: "List of crates",
891                 keywords: BASIC_KEYWORDS,
892                 resource_suffix: &cx.shared.resource_suffix,
893                 extra_scripts: &[],
894                 static_extra_scripts: &[],
895             };
896             krates.push(krate.name.clone());
897             krates.sort();
898             krates.dedup();
899
900             let content = format!(
901                 "<h1 class='fqn'>\
902      <span class='in-band'>List of all crates</span>\
903 </h1><ul class='mod'>{}</ul>",
904                 krates
905                     .iter()
906                     .map(|s| {
907                         format!("<li><a href=\"{}index.html\">{}</li>", ensure_trailing_slash(s), s)
908                     })
909                     .collect::<String>()
910             );
911             let v = layout::render(&cx.shared.layout, &page, "", content, &cx.shared.themes);
912             cx.shared.fs.write(&dst, v.as_bytes())?;
913         }
914     }
915
916     // Update the list of all implementors for traits
917     let dst = cx.dst.join("implementors");
918     for (&did, imps) in &cx.cache.implementors {
919         // Private modules can leak through to this phase of rustdoc, which
920         // could contain implementations for otherwise private types. In some
921         // rare cases we could find an implementation for an item which wasn't
922         // indexed, so we just skip this step in that case.
923         //
924         // FIXME: this is a vague explanation for why this can't be a `get`, in
925         //        theory it should be...
926         let &(ref remote_path, remote_item_type) = match cx.cache.paths.get(&did) {
927             Some(p) => p,
928             None => match cx.cache.external_paths.get(&did) {
929                 Some(p) => p,
930                 None => continue,
931             },
932         };
933
934         #[derive(Serialize)]
935         struct Implementor {
936             text: String,
937             synthetic: bool,
938             types: Vec<String>,
939         }
940
941         let implementors = imps
942             .iter()
943             .filter_map(|imp| {
944                 // If the trait and implementation are in the same crate, then
945                 // there's no need to emit information about it (there's inlining
946                 // going on). If they're in different crates then the crate defining
947                 // the trait will be interested in our implementation.
948                 //
949                 // If the implementation is from another crate then that crate
950                 // should add it.
951                 if imp.impl_item.def_id.krate == did.krate || !imp.impl_item.def_id.is_local() {
952                     None
953                 } else {
954                     Some(Implementor {
955                         text: imp.inner_impl().print().to_string(),
956                         synthetic: imp.inner_impl().synthetic,
957                         types: collect_paths_for_type(imp.inner_impl().for_.clone()),
958                     })
959                 }
960             })
961             .collect::<Vec<_>>();
962
963         // Only create a js file if we have impls to add to it. If the trait is
964         // documented locally though we always create the file to avoid dead
965         // links.
966         if implementors.is_empty() && !cx.cache.paths.contains_key(&did) {
967             continue;
968         }
969
970         let implementors = format!(
971             r#"implementors["{}"] = {};"#,
972             krate.name,
973             serde_json::to_string(&implementors).unwrap()
974         );
975
976         let mut mydst = dst.clone();
977         for part in &remote_path[..remote_path.len() - 1] {
978             mydst.push(part);
979         }
980         cx.shared.ensure_dir(&mydst)?;
981         mydst.push(&format!("{}.{}.js", remote_item_type, remote_path[remote_path.len() - 1]));
982
983         let (mut all_implementors, _) =
984             try_err!(collect(&mydst, &krate.name, "implementors"), &mydst);
985         all_implementors.push(implementors);
986         // Sort the implementors by crate so the file will be generated
987         // identically even with rustdoc running in parallel.
988         all_implementors.sort();
989
990         let mut v = String::from("(function() {var implementors = {};\n");
991         for implementor in &all_implementors {
992             writeln!(v, "{}", *implementor).unwrap();
993         }
994         v.push_str(
995             "if (window.register_implementors) {\
996                  window.register_implementors(implementors);\
997              } else {\
998                  window.pending_implementors = implementors;\
999              }",
1000         );
1001         v.push_str("})()");
1002         cx.shared.fs.write(&mydst, &v)?;
1003     }
1004     Ok(())
1005 }
1006
1007 fn write_minify(
1008     fs: &DocFS,
1009     dst: PathBuf,
1010     contents: &str,
1011     enable_minification: bool,
1012 ) -> Result<(), Error> {
1013     if enable_minification {
1014         if dst.extension() == Some(&OsStr::new("css")) {
1015             let res = try_none!(minifier::css::minify(contents).ok(), &dst);
1016             fs.write(dst, res.as_bytes())
1017         } else {
1018             fs.write(dst, minifier::js::minify(contents).as_bytes())
1019         }
1020     } else {
1021         fs.write(dst, contents.as_bytes())
1022     }
1023 }
1024
1025 #[derive(Debug, Eq, PartialEq, Hash)]
1026 struct ItemEntry {
1027     url: String,
1028     name: String,
1029 }
1030
1031 impl ItemEntry {
1032     fn new(mut url: String, name: String) -> ItemEntry {
1033         while url.starts_with('/') {
1034             url.remove(0);
1035         }
1036         ItemEntry { url, name }
1037     }
1038 }
1039
1040 impl ItemEntry {
1041     crate fn print(&self) -> impl fmt::Display + '_ {
1042         crate::html::format::display_fn(move |f| {
1043             write!(f, "<a href='{}'>{}</a>", self.url, Escape(&self.name))
1044         })
1045     }
1046 }
1047
1048 impl PartialOrd for ItemEntry {
1049     fn partial_cmp(&self, other: &ItemEntry) -> Option<::std::cmp::Ordering> {
1050         Some(self.cmp(other))
1051     }
1052 }
1053
1054 impl Ord for ItemEntry {
1055     fn cmp(&self, other: &ItemEntry) -> ::std::cmp::Ordering {
1056         self.name.cmp(&other.name)
1057     }
1058 }
1059
1060 #[derive(Debug)]
1061 struct AllTypes {
1062     structs: FxHashSet<ItemEntry>,
1063     enums: FxHashSet<ItemEntry>,
1064     unions: FxHashSet<ItemEntry>,
1065     primitives: FxHashSet<ItemEntry>,
1066     traits: FxHashSet<ItemEntry>,
1067     macros: FxHashSet<ItemEntry>,
1068     functions: FxHashSet<ItemEntry>,
1069     typedefs: FxHashSet<ItemEntry>,
1070     opaque_tys: FxHashSet<ItemEntry>,
1071     statics: FxHashSet<ItemEntry>,
1072     constants: FxHashSet<ItemEntry>,
1073     keywords: FxHashSet<ItemEntry>,
1074     attributes: FxHashSet<ItemEntry>,
1075     derives: FxHashSet<ItemEntry>,
1076     trait_aliases: FxHashSet<ItemEntry>,
1077 }
1078
1079 impl AllTypes {
1080     fn new() -> AllTypes {
1081         let new_set = |cap| FxHashSet::with_capacity_and_hasher(cap, Default::default());
1082         AllTypes {
1083             structs: new_set(100),
1084             enums: new_set(100),
1085             unions: new_set(100),
1086             primitives: new_set(26),
1087             traits: new_set(100),
1088             macros: new_set(100),
1089             functions: new_set(100),
1090             typedefs: new_set(100),
1091             opaque_tys: new_set(100),
1092             statics: new_set(100),
1093             constants: new_set(100),
1094             keywords: new_set(100),
1095             attributes: new_set(100),
1096             derives: new_set(100),
1097             trait_aliases: new_set(100),
1098         }
1099     }
1100
1101     fn append(&mut self, item_name: String, item_type: &ItemType) {
1102         let mut url: Vec<_> = item_name.split("::").skip(1).collect();
1103         if let Some(name) = url.pop() {
1104             let new_url = format!("{}/{}.{}.html", url.join("/"), item_type, name);
1105             url.push(name);
1106             let name = url.join("::");
1107             match *item_type {
1108                 ItemType::Struct => self.structs.insert(ItemEntry::new(new_url, name)),
1109                 ItemType::Enum => self.enums.insert(ItemEntry::new(new_url, name)),
1110                 ItemType::Union => self.unions.insert(ItemEntry::new(new_url, name)),
1111                 ItemType::Primitive => self.primitives.insert(ItemEntry::new(new_url, name)),
1112                 ItemType::Trait => self.traits.insert(ItemEntry::new(new_url, name)),
1113                 ItemType::Macro => self.macros.insert(ItemEntry::new(new_url, name)),
1114                 ItemType::Function => self.functions.insert(ItemEntry::new(new_url, name)),
1115                 ItemType::Typedef => self.typedefs.insert(ItemEntry::new(new_url, name)),
1116                 ItemType::OpaqueTy => self.opaque_tys.insert(ItemEntry::new(new_url, name)),
1117                 ItemType::Static => self.statics.insert(ItemEntry::new(new_url, name)),
1118                 ItemType::Constant => self.constants.insert(ItemEntry::new(new_url, name)),
1119                 ItemType::ProcAttribute => self.attributes.insert(ItemEntry::new(new_url, name)),
1120                 ItemType::ProcDerive => self.derives.insert(ItemEntry::new(new_url, name)),
1121                 ItemType::TraitAlias => self.trait_aliases.insert(ItemEntry::new(new_url, name)),
1122                 _ => true,
1123             };
1124         }
1125     }
1126 }
1127
1128 fn print_entries(f: &mut Buffer, e: &FxHashSet<ItemEntry>, title: &str, class: &str) {
1129     if !e.is_empty() {
1130         let mut e: Vec<&ItemEntry> = e.iter().collect();
1131         e.sort();
1132         write!(
1133             f,
1134             "<h3 id='{}'>{}</h3><ul class='{} docblock'>{}</ul>",
1135             title,
1136             Escape(title),
1137             class,
1138             e.iter().map(|s| format!("<li>{}</li>", s.print())).collect::<String>()
1139         );
1140     }
1141 }
1142
1143 impl AllTypes {
1144     fn print(self, f: &mut Buffer) {
1145         write!(
1146             f,
1147             "<h1 class='fqn'>\
1148         <span class='out-of-band'>\
1149             <span id='render-detail'>\
1150                 <a id=\"toggle-all-docs\" href=\"javascript:void(0)\" title=\"collapse all docs\">\
1151                     [<span class='inner'>&#x2212;</span>]\
1152                 </a>\
1153             </span>
1154         </span>
1155         <span class='in-band'>List of all items</span>\
1156     </h1>"
1157         );
1158         print_entries(f, &self.structs, "Structs", "structs");
1159         print_entries(f, &self.enums, "Enums", "enums");
1160         print_entries(f, &self.unions, "Unions", "unions");
1161         print_entries(f, &self.primitives, "Primitives", "primitives");
1162         print_entries(f, &self.traits, "Traits", "traits");
1163         print_entries(f, &self.macros, "Macros", "macros");
1164         print_entries(f, &self.attributes, "Attribute Macros", "attributes");
1165         print_entries(f, &self.derives, "Derive Macros", "derives");
1166         print_entries(f, &self.functions, "Functions", "functions");
1167         print_entries(f, &self.typedefs, "Typedefs", "typedefs");
1168         print_entries(f, &self.trait_aliases, "Trait Aliases", "trait-aliases");
1169         print_entries(f, &self.opaque_tys, "Opaque Types", "opaque-types");
1170         print_entries(f, &self.statics, "Statics", "statics");
1171         print_entries(f, &self.constants, "Constants", "constants")
1172     }
1173 }
1174
1175 #[derive(Debug)]
1176 enum Setting {
1177     Section { description: &'static str, sub_settings: Vec<Setting> },
1178     Entry { js_data_name: &'static str, description: &'static str, default_value: bool },
1179 }
1180
1181 impl Setting {
1182     fn display(&self) -> String {
1183         match *self {
1184             Setting::Section { ref description, ref sub_settings } => format!(
1185                 "<div class='setting-line'>\
1186                         <div class='title'>{}</div>\
1187                         <div class='sub-settings'>{}</div>
1188                     </div>",
1189                 description,
1190                 sub_settings.iter().map(|s| s.display()).collect::<String>()
1191             ),
1192             Setting::Entry { ref js_data_name, ref description, ref default_value } => format!(
1193                 "<div class='setting-line'>\
1194                         <label class='toggle'>\
1195                         <input type='checkbox' id='{}' {}>\
1196                         <span class='slider'></span>\
1197                         </label>\
1198                         <div>{}</div>\
1199                     </div>",
1200                 js_data_name,
1201                 if *default_value { " checked" } else { "" },
1202                 description,
1203             ),
1204         }
1205     }
1206 }
1207
1208 impl From<(&'static str, &'static str, bool)> for Setting {
1209     fn from(values: (&'static str, &'static str, bool)) -> Setting {
1210         Setting::Entry { js_data_name: values.0, description: values.1, default_value: values.2 }
1211     }
1212 }
1213
1214 impl<T: Into<Setting>> From<(&'static str, Vec<T>)> for Setting {
1215     fn from(values: (&'static str, Vec<T>)) -> Setting {
1216         Setting::Section {
1217             description: values.0,
1218             sub_settings: values.1.into_iter().map(|v| v.into()).collect::<Vec<_>>(),
1219         }
1220     }
1221 }
1222
1223 fn settings(root_path: &str, suffix: &str) -> String {
1224     // (id, explanation, default value)
1225     let settings: &[Setting] = &[
1226         (
1227             "Auto-hide item declarations",
1228             vec![
1229                 ("auto-hide-struct", "Auto-hide structs declaration", true),
1230                 ("auto-hide-enum", "Auto-hide enums declaration", false),
1231                 ("auto-hide-union", "Auto-hide unions declaration", true),
1232                 ("auto-hide-trait", "Auto-hide traits declaration", true),
1233                 ("auto-hide-macro", "Auto-hide macros declaration", false),
1234             ],
1235         )
1236             .into(),
1237         ("auto-hide-attributes", "Auto-hide item attributes.", true).into(),
1238         ("auto-hide-method-docs", "Auto-hide item methods' documentation", false).into(),
1239         ("auto-hide-trait-implementations", "Auto-hide trait implementations documentation", true)
1240             .into(),
1241         ("go-to-only-result", "Directly go to item in search if there is only one result", false)
1242             .into(),
1243         ("line-numbers", "Show line numbers on code examples", false).into(),
1244         ("disable-shortcuts", "Disable keyboard shortcuts", false).into(),
1245     ];
1246     format!(
1247         "<h1 class='fqn'>\
1248     <span class='in-band'>Rustdoc settings</span>\
1249 </h1>\
1250 <div class='settings'>{}</div>\
1251 <script src='{}settings{}.js'></script>",
1252         settings.iter().map(|s| s.display()).collect::<String>(),
1253         root_path,
1254         suffix
1255     )
1256 }
1257
1258 impl Context {
1259     fn derive_id(&self, id: String) -> String {
1260         let mut map = self.id_map.borrow_mut();
1261         map.derive(id)
1262     }
1263
1264     /// String representation of how to get back to the root path of the 'doc/'
1265     /// folder in terms of a relative URL.
1266     fn root_path(&self) -> String {
1267         "../".repeat(self.current.len())
1268     }
1269
1270     /// Main method for rendering a crate.
1271     ///
1272     /// This currently isn't parallelized, but it'd be pretty easy to add
1273     /// parallelization to this function.
1274     fn krate(self, mut krate: clean::Crate) -> Result<(), Error> {
1275         let mut item = match krate.module.take() {
1276             Some(i) => i,
1277             None => return Ok(()),
1278         };
1279         let final_file = self.dst.join(&krate.name).join("all.html");
1280         let settings_file = self.dst.join("settings.html");
1281
1282         let crate_name = krate.name.clone();
1283         item.name = Some(krate.name);
1284
1285         let mut all = AllTypes::new();
1286
1287         {
1288             // Render the crate documentation
1289             let mut work = vec![(self.clone(), item)];
1290
1291             while let Some((mut cx, item)) = work.pop() {
1292                 cx.item(item, &mut all, |cx, item| work.push((cx.clone(), item)))?
1293             }
1294         }
1295
1296         let mut root_path = self.dst.to_str().expect("invalid path").to_owned();
1297         if !root_path.ends_with('/') {
1298             root_path.push('/');
1299         }
1300         let mut page = layout::Page {
1301             title: "List of all items in this crate",
1302             css_class: "mod",
1303             root_path: "../",
1304             static_root_path: self.shared.static_root_path.as_deref(),
1305             description: "List of all items in this crate",
1306             keywords: BASIC_KEYWORDS,
1307             resource_suffix: &self.shared.resource_suffix,
1308             extra_scripts: &[],
1309             static_extra_scripts: &[],
1310         };
1311         let sidebar = if let Some(ref version) = self.cache.crate_version {
1312             format!(
1313                 "<p class='location'>Crate {}</p>\
1314                      <div class='block version'>\
1315                          <p>Version {}</p>\
1316                      </div>\
1317                      <a id='all-types' href='index.html'><p>Back to index</p></a>",
1318                 crate_name, version
1319             )
1320         } else {
1321             String::new()
1322         };
1323         let v = layout::render(
1324             &self.shared.layout,
1325             &page,
1326             sidebar,
1327             |buf: &mut Buffer| all.print(buf),
1328             &self.shared.themes,
1329         );
1330         self.shared.fs.write(&final_file, v.as_bytes())?;
1331
1332         // Generating settings page.
1333         page.title = "Rustdoc settings";
1334         page.description = "Settings of Rustdoc";
1335         page.root_path = "./";
1336
1337         let mut themes = self.shared.themes.clone();
1338         let sidebar = "<p class='location'>Settings</p><div class='sidebar-elems'></div>";
1339         themes.push(PathBuf::from("settings.css"));
1340         let v = layout::render(
1341             &self.shared.layout,
1342             &page,
1343             sidebar,
1344             settings(
1345                 self.shared.static_root_path.as_deref().unwrap_or("./"),
1346                 &self.shared.resource_suffix,
1347             ),
1348             &themes,
1349         );
1350         self.shared.fs.write(&settings_file, v.as_bytes())?;
1351
1352         Ok(())
1353     }
1354
1355     fn render_item(&self, it: &clean::Item, pushname: bool) -> String {
1356         // A little unfortunate that this is done like this, but it sure
1357         // does make formatting *a lot* nicer.
1358         CURRENT_DEPTH.with(|slot| {
1359             slot.set(self.current.len());
1360         });
1361
1362         let mut title = if it.is_primitive() || it.is_keyword() {
1363             // No need to include the namespace for primitive types and keywords
1364             String::new()
1365         } else {
1366             self.current.join("::")
1367         };
1368         if pushname {
1369             if !title.is_empty() {
1370                 title.push_str("::");
1371             }
1372             title.push_str(it.name.as_ref().unwrap());
1373         }
1374         title.push_str(" - Rust");
1375         let tyname = it.type_();
1376         let desc = if it.is_crate() {
1377             format!("API documentation for the Rust `{}` crate.", self.shared.layout.krate)
1378         } else {
1379             format!(
1380                 "API documentation for the Rust `{}` {} in crate `{}`.",
1381                 it.name.as_ref().unwrap(),
1382                 tyname,
1383                 self.shared.layout.krate
1384             )
1385         };
1386         let keywords = make_item_keywords(it);
1387         let page = layout::Page {
1388             css_class: tyname.as_str(),
1389             root_path: &self.root_path(),
1390             static_root_path: self.shared.static_root_path.as_deref(),
1391             title: &title,
1392             description: &desc,
1393             keywords: &keywords,
1394             resource_suffix: &self.shared.resource_suffix,
1395             extra_scripts: &[],
1396             static_extra_scripts: &[],
1397         };
1398
1399         {
1400             self.id_map.borrow_mut().reset();
1401             self.id_map.borrow_mut().populate(initial_ids());
1402         }
1403
1404         if !self.render_redirect_pages {
1405             layout::render(
1406                 &self.shared.layout,
1407                 &page,
1408                 |buf: &mut _| print_sidebar(self, it, buf),
1409                 |buf: &mut _| print_item(self, it, buf),
1410                 &self.shared.themes,
1411             )
1412         } else {
1413             let mut url = self.root_path();
1414             if let Some(&(ref names, ty)) = self.cache.paths.get(&it.def_id) {
1415                 for name in &names[..names.len() - 1] {
1416                     url.push_str(name);
1417                     url.push_str("/");
1418                 }
1419                 url.push_str(&item_path(ty, names.last().unwrap()));
1420                 layout::redirect(&url)
1421             } else {
1422                 String::new()
1423             }
1424         }
1425     }
1426
1427     /// Non-parallelized version of rendering an item. This will take the input
1428     /// item, render its contents, and then invoke the specified closure with
1429     /// all sub-items which need to be rendered.
1430     ///
1431     /// The rendering driver uses this closure to queue up more work.
1432     fn item<F>(&mut self, item: clean::Item, all: &mut AllTypes, mut f: F) -> Result<(), Error>
1433     where
1434         F: FnMut(&mut Context, clean::Item),
1435     {
1436         // Stripped modules survive the rustdoc passes (i.e., `strip-private`)
1437         // if they contain impls for public types. These modules can also
1438         // contain items such as publicly re-exported structures.
1439         //
1440         // External crates will provide links to these structures, so
1441         // these modules are recursed into, but not rendered normally
1442         // (a flag on the context).
1443         if !self.render_redirect_pages {
1444             self.render_redirect_pages = item.is_stripped();
1445         }
1446
1447         if item.is_mod() {
1448             // modules are special because they add a namespace. We also need to
1449             // recurse into the items of the module as well.
1450             let name = item.name.as_ref().unwrap().to_string();
1451             let scx = &self.shared;
1452             if name.is_empty() {
1453                 panic!("Unexpected empty destination: {:?}", self.current);
1454             }
1455             let prev = self.dst.clone();
1456             self.dst.push(&name);
1457             self.current.push(name);
1458
1459             info!("Recursing into {}", self.dst.display());
1460
1461             let buf = self.render_item(&item, false);
1462             // buf will be empty if the module is stripped and there is no redirect for it
1463             if !buf.is_empty() {
1464                 self.shared.ensure_dir(&self.dst)?;
1465                 let joint_dst = self.dst.join("index.html");
1466                 scx.fs.write(&joint_dst, buf.as_bytes())?;
1467             }
1468
1469             let m = match item.inner {
1470                 clean::StrippedItem(box clean::ModuleItem(m)) | clean::ModuleItem(m) => m,
1471                 _ => unreachable!(),
1472             };
1473
1474             // Render sidebar-items.js used throughout this module.
1475             if !self.render_redirect_pages {
1476                 let items = self.build_sidebar_items(&m);
1477                 let js_dst = self.dst.join("sidebar-items.js");
1478                 let v = format!("initSidebarItems({});", serde_json::to_string(&items).unwrap());
1479                 scx.fs.write(&js_dst, &v)?;
1480             }
1481
1482             for item in m.items {
1483                 f(self, item);
1484             }
1485
1486             info!("Recursed; leaving {}", self.dst.display());
1487
1488             // Go back to where we were at
1489             self.dst = prev;
1490             self.current.pop().unwrap();
1491         } else if item.name.is_some() {
1492             let buf = self.render_item(&item, true);
1493             // buf will be empty if the item is stripped and there is no redirect for it
1494             if !buf.is_empty() {
1495                 let name = item.name.as_ref().unwrap();
1496                 let item_type = item.type_();
1497                 let file_name = &item_path(item_type, name);
1498                 self.shared.ensure_dir(&self.dst)?;
1499                 let joint_dst = self.dst.join(file_name);
1500                 self.shared.fs.write(&joint_dst, buf.as_bytes())?;
1501
1502                 if !self.render_redirect_pages {
1503                     all.append(full_path(self, &item), &item_type);
1504                 }
1505                 if self.shared.generate_redirect_pages {
1506                     // Redirect from a sane URL using the namespace to Rustdoc's
1507                     // URL for the page.
1508                     let redir_name = format!("{}.{}.html", name, item_type.name_space());
1509                     let redir_dst = self.dst.join(redir_name);
1510                     let v = layout::redirect(file_name);
1511                     self.shared.fs.write(&redir_dst, v.as_bytes())?;
1512                 }
1513                 // If the item is a macro, redirect from the old macro URL (with !)
1514                 // to the new one (without).
1515                 if item_type == ItemType::Macro {
1516                     let redir_name = format!("{}.{}!.html", item_type, name);
1517                     let redir_dst = self.dst.join(redir_name);
1518                     let v = layout::redirect(file_name);
1519                     self.shared.fs.write(&redir_dst, v.as_bytes())?;
1520                 }
1521             }
1522         }
1523         Ok(())
1524     }
1525
1526     fn build_sidebar_items(&self, m: &clean::Module) -> BTreeMap<String, Vec<NameDoc>> {
1527         // BTreeMap instead of HashMap to get a sorted output
1528         let mut map: BTreeMap<_, Vec<_>> = BTreeMap::new();
1529         for item in &m.items {
1530             if item.is_stripped() {
1531                 continue;
1532             }
1533
1534             let short = item.type_();
1535             let myname = match item.name {
1536                 None => continue,
1537                 Some(ref s) => s.to_string(),
1538             };
1539             let short = short.to_string();
1540             map.entry(short)
1541                 .or_default()
1542                 .push((myname, Some(plain_summary_line(item.doc_value()))));
1543         }
1544
1545         if self.shared.sort_modules_alphabetically {
1546             for (_, items) in &mut map {
1547                 items.sort();
1548             }
1549         }
1550         map
1551     }
1552 }
1553
1554 impl Context {
1555     /// Generates a url appropriate for an `href` attribute back to the source of
1556     /// this item.
1557     ///
1558     /// The url generated, when clicked, will redirect the browser back to the
1559     /// original source code.
1560     ///
1561     /// If `None` is returned, then a source link couldn't be generated. This
1562     /// may happen, for example, with externally inlined items where the source
1563     /// of their crate documentation isn't known.
1564     fn src_href(&self, item: &clean::Item) -> Option<String> {
1565         let mut root = self.root_path();
1566
1567         let mut path = String::new();
1568
1569         // We can safely ignore macros from other libraries
1570         let file = match item.source.filename {
1571             FileName::Real(ref path) => path,
1572             _ => return None,
1573         };
1574
1575         let (krate, path) = if item.def_id.is_local() {
1576             if let Some(path) = self.shared.local_sources.get(file) {
1577                 (&self.shared.layout.krate, path)
1578             } else {
1579                 return None;
1580             }
1581         } else {
1582             let (krate, src_root) = match *self.cache.extern_locations.get(&item.def_id.krate)? {
1583                 (ref name, ref src, Local) => (name, src),
1584                 (ref name, ref src, Remote(ref s)) => {
1585                     root = s.to_string();
1586                     (name, src)
1587                 }
1588                 (_, _, Unknown) => return None,
1589             };
1590
1591             sources::clean_path(&src_root, file, false, |component| {
1592                 path.push_str(&component.to_string_lossy());
1593                 path.push('/');
1594             });
1595             let mut fname = file.file_name().expect("source has no filename").to_os_string();
1596             fname.push(".html");
1597             path.push_str(&fname.to_string_lossy());
1598             (krate, &path)
1599         };
1600
1601         let lines = if item.source.loline == item.source.hiline {
1602             item.source.loline.to_string()
1603         } else {
1604             format!("{}-{}", item.source.loline, item.source.hiline)
1605         };
1606         Some(format!(
1607             "{root}src/{krate}/{path}#{lines}",
1608             root = Escape(&root),
1609             krate = krate,
1610             path = path,
1611             lines = lines
1612         ))
1613     }
1614 }
1615
1616 fn wrap_into_docblock<F>(w: &mut Buffer, f: F)
1617 where
1618     F: FnOnce(&mut Buffer),
1619 {
1620     write!(w, "<div class=\"docblock type-decl hidden-by-usual-hider\">");
1621     f(w);
1622     write!(w, "</div>")
1623 }
1624
1625 fn print_item(cx: &Context, item: &clean::Item, buf: &mut Buffer) {
1626     debug_assert!(!item.is_stripped());
1627     // Write the breadcrumb trail header for the top
1628     write!(buf, "<h1 class='fqn'><span class='out-of-band'>");
1629     if let Some(version) = item.stable_since() {
1630         write!(
1631             buf,
1632             "<span class='since' title='Stable since Rust version {0}'>{0}</span>",
1633             version
1634         );
1635     }
1636     write!(
1637         buf,
1638         "<span id='render-detail'>\
1639                 <a id=\"toggle-all-docs\" href=\"javascript:void(0)\" \
1640                     title=\"collapse all docs\">\
1641                     [<span class='inner'>&#x2212;</span>]\
1642                 </a>\
1643             </span>"
1644     );
1645
1646     // Write `src` tag
1647     //
1648     // When this item is part of a `pub use` in a downstream crate, the
1649     // [src] link in the downstream documentation will actually come back to
1650     // this page, and this link will be auto-clicked. The `id` attribute is
1651     // used to find the link to auto-click.
1652     if cx.shared.include_sources && !item.is_primitive() {
1653         if let Some(l) = cx.src_href(item) {
1654             write!(buf, "<a class='srclink' href='{}' title='{}'>[src]</a>", l, "goto source code");
1655         }
1656     }
1657
1658     write!(buf, "</span>"); // out-of-band
1659     write!(buf, "<span class='in-band'>");
1660     let name = match item.inner {
1661         clean::ModuleItem(ref m) => {
1662             if m.is_crate {
1663                 "Crate "
1664             } else {
1665                 "Module "
1666             }
1667         }
1668         clean::FunctionItem(..) | clean::ForeignFunctionItem(..) => "Function ",
1669         clean::TraitItem(..) => "Trait ",
1670         clean::StructItem(..) => "Struct ",
1671         clean::UnionItem(..) => "Union ",
1672         clean::EnumItem(..) => "Enum ",
1673         clean::TypedefItem(..) => "Type Definition ",
1674         clean::MacroItem(..) => "Macro ",
1675         clean::ProcMacroItem(ref mac) => match mac.kind {
1676             MacroKind::Bang => "Macro ",
1677             MacroKind::Attr => "Attribute Macro ",
1678             MacroKind::Derive => "Derive Macro ",
1679         },
1680         clean::PrimitiveItem(..) => "Primitive Type ",
1681         clean::StaticItem(..) | clean::ForeignStaticItem(..) => "Static ",
1682         clean::ConstantItem(..) => "Constant ",
1683         clean::ForeignTypeItem => "Foreign Type ",
1684         clean::KeywordItem(..) => "Keyword ",
1685         clean::OpaqueTyItem(..) => "Opaque Type ",
1686         clean::TraitAliasItem(..) => "Trait Alias ",
1687         _ => {
1688             // We don't generate pages for any other type.
1689             unreachable!();
1690         }
1691     };
1692     buf.write_str(name);
1693     if !item.is_primitive() && !item.is_keyword() {
1694         let cur = &cx.current;
1695         let amt = if item.is_mod() { cur.len() - 1 } else { cur.len() };
1696         for (i, component) in cur.iter().enumerate().take(amt) {
1697             write!(
1698                 buf,
1699                 "<a href='{}index.html'>{}</a>::<wbr>",
1700                 "../".repeat(cur.len() - i - 1),
1701                 component
1702             );
1703         }
1704     }
1705     write!(buf, "<a class=\"{}\" href=''>{}</a>", item.type_(), item.name.as_ref().unwrap());
1706
1707     write!(buf, "</span></h1>"); // in-band
1708
1709     match item.inner {
1710         clean::ModuleItem(ref m) => item_module(buf, cx, item, &m.items),
1711         clean::FunctionItem(ref f) | clean::ForeignFunctionItem(ref f) => {
1712             item_function(buf, cx, item, f)
1713         }
1714         clean::TraitItem(ref t) => item_trait(buf, cx, item, t),
1715         clean::StructItem(ref s) => item_struct(buf, cx, item, s),
1716         clean::UnionItem(ref s) => item_union(buf, cx, item, s),
1717         clean::EnumItem(ref e) => item_enum(buf, cx, item, e),
1718         clean::TypedefItem(ref t, _) => item_typedef(buf, cx, item, t),
1719         clean::MacroItem(ref m) => item_macro(buf, cx, item, m),
1720         clean::ProcMacroItem(ref m) => item_proc_macro(buf, cx, item, m),
1721         clean::PrimitiveItem(_) => item_primitive(buf, cx, item),
1722         clean::StaticItem(ref i) | clean::ForeignStaticItem(ref i) => item_static(buf, cx, item, i),
1723         clean::ConstantItem(ref c) => item_constant(buf, cx, item, c),
1724         clean::ForeignTypeItem => item_foreign_type(buf, cx, item),
1725         clean::KeywordItem(_) => item_keyword(buf, cx, item),
1726         clean::OpaqueTyItem(ref e, _) => item_opaque_ty(buf, cx, item, e),
1727         clean::TraitAliasItem(ref ta) => item_trait_alias(buf, cx, item, ta),
1728         _ => {
1729             // We don't generate pages for any other type.
1730             unreachable!();
1731         }
1732     }
1733 }
1734
1735 fn item_path(ty: ItemType, name: &str) -> String {
1736     match ty {
1737         ItemType::Module => format!("{}index.html", ensure_trailing_slash(name)),
1738         _ => format!("{}.{}.html", ty, name),
1739     }
1740 }
1741
1742 fn full_path(cx: &Context, item: &clean::Item) -> String {
1743     let mut s = cx.current.join("::");
1744     s.push_str("::");
1745     s.push_str(item.name.as_ref().unwrap());
1746     s
1747 }
1748
1749 #[inline]
1750 fn plain_summary_line(s: Option<&str>) -> String {
1751     let s = s.unwrap_or("");
1752     // This essentially gets the first paragraph of text in one line.
1753     let mut line = s
1754         .lines()
1755         .skip_while(|line| line.chars().all(|c| c.is_whitespace()))
1756         .take_while(|line| line.chars().any(|c| !c.is_whitespace()))
1757         .fold(String::new(), |mut acc, line| {
1758             acc.push_str(line);
1759             acc.push(' ');
1760             acc
1761         });
1762     // remove final whitespace
1763     line.pop();
1764     markdown::plain_summary_line(&line[..])
1765 }
1766
1767 fn shorten(s: String) -> String {
1768     if s.chars().count() > 60 {
1769         let mut len = 0;
1770         let mut ret = s
1771             .split_whitespace()
1772             .take_while(|p| {
1773                 // + 1 for the added character after the word.
1774                 len += p.chars().count() + 1;
1775                 len < 60
1776             })
1777             .collect::<Vec<_>>()
1778             .join(" ");
1779         ret.push('…');
1780         ret
1781     } else {
1782         s
1783     }
1784 }
1785
1786 fn document(w: &mut Buffer, cx: &Context, item: &clean::Item) {
1787     if let Some(ref name) = item.name {
1788         info!("Documenting {}", name);
1789     }
1790     document_stability(w, cx, item, false);
1791     document_full(w, item, cx, "", false);
1792 }
1793
1794 /// Render md_text as markdown.
1795 fn render_markdown(
1796     w: &mut Buffer,
1797     cx: &Context,
1798     md_text: &str,
1799     links: Vec<(String, String)>,
1800     prefix: &str,
1801     is_hidden: bool,
1802 ) {
1803     let mut ids = cx.id_map.borrow_mut();
1804     write!(
1805         w,
1806         "<div class='docblock{}'>{}{}</div>",
1807         if is_hidden { " hidden" } else { "" },
1808         prefix,
1809         Markdown(
1810             md_text,
1811             &links,
1812             &mut ids,
1813             cx.shared.codes,
1814             cx.shared.edition,
1815             &cx.shared.playground
1816         )
1817         .to_string()
1818     )
1819 }
1820
1821 fn document_short(
1822     w: &mut Buffer,
1823     cx: &Context,
1824     item: &clean::Item,
1825     link: AssocItemLink<'_>,
1826     prefix: &str,
1827     is_hidden: bool,
1828 ) {
1829     if let Some(s) = item.doc_value() {
1830         let markdown = if s.contains('\n') {
1831             format!(
1832                 "{} [Read more]({})",
1833                 &plain_summary_line(Some(s)),
1834                 naive_assoc_href(item, link)
1835             )
1836         } else {
1837             plain_summary_line(Some(s))
1838         };
1839         render_markdown(w, cx, &markdown, item.links(), prefix, is_hidden);
1840     } else if !prefix.is_empty() {
1841         write!(
1842             w,
1843             "<div class='docblock{}'>{}</div>",
1844             if is_hidden { " hidden" } else { "" },
1845             prefix
1846         );
1847     }
1848 }
1849
1850 fn document_full(w: &mut Buffer, item: &clean::Item, cx: &Context, prefix: &str, is_hidden: bool) {
1851     if let Some(s) = cx.shared.maybe_collapsed_doc_value(item) {
1852         debug!("Doc block: =====\n{}\n=====", s);
1853         render_markdown(w, cx, &*s, item.links(), prefix, is_hidden);
1854     } else if !prefix.is_empty() {
1855         write!(
1856             w,
1857             "<div class='docblock{}'>{}</div>",
1858             if is_hidden { " hidden" } else { "" },
1859             prefix
1860         );
1861     }
1862 }
1863
1864 fn document_stability(w: &mut Buffer, cx: &Context, item: &clean::Item, is_hidden: bool) {
1865     let stabilities = short_stability(item, cx);
1866     if !stabilities.is_empty() {
1867         write!(w, "<div class='stability{}'>", if is_hidden { " hidden" } else { "" });
1868         for stability in stabilities {
1869             write!(w, "{}", stability);
1870         }
1871         write!(w, "</div>");
1872     }
1873 }
1874
1875 fn document_non_exhaustive_header(item: &clean::Item) -> &str {
1876     if item.is_non_exhaustive() { " (Non-exhaustive)" } else { "" }
1877 }
1878
1879 fn document_non_exhaustive(w: &mut Buffer, item: &clean::Item) {
1880     if item.is_non_exhaustive() {
1881         write!(w, "<div class='docblock non-exhaustive non-exhaustive-{}'>", {
1882             if item.is_struct() {
1883                 "struct"
1884             } else if item.is_enum() {
1885                 "enum"
1886             } else if item.is_variant() {
1887                 "variant"
1888             } else {
1889                 "type"
1890             }
1891         });
1892
1893         if item.is_struct() {
1894             write!(
1895                 w,
1896                 "Non-exhaustive structs could have additional fields added in future. \
1897                        Therefore, non-exhaustive structs cannot be constructed in external crates \
1898                        using the traditional <code>Struct {{ .. }}</code> syntax; cannot be \
1899                        matched against without a wildcard <code>..</code>; and \
1900                        struct update syntax will not work."
1901             );
1902         } else if item.is_enum() {
1903             write!(
1904                 w,
1905                 "Non-exhaustive enums could have additional variants added in future. \
1906                        Therefore, when matching against variants of non-exhaustive enums, an \
1907                        extra wildcard arm must be added to account for any future variants."
1908             );
1909         } else if item.is_variant() {
1910             write!(
1911                 w,
1912                 "Non-exhaustive enum variants could have additional fields added in future. \
1913                        Therefore, non-exhaustive enum variants cannot be constructed in external \
1914                        crates and cannot be matched against."
1915             );
1916         } else {
1917             write!(
1918                 w,
1919                 "This type will require a wildcard arm in any match statements or \
1920                        constructors."
1921             );
1922         }
1923
1924         write!(w, "</div>");
1925     }
1926 }
1927
1928 fn name_key(name: &str) -> (&str, u64, usize) {
1929     let end = name.bytes().rposition(|b| b.is_ascii_digit()).map_or(name.len(), |i| i + 1);
1930
1931     // find number at end
1932     let split = name[0..end].bytes().rposition(|b| !b.is_ascii_digit()).map_or(0, |i| i + 1);
1933
1934     // count leading zeroes
1935     let after_zeroes =
1936         name[split..end].bytes().position(|b| b != b'0').map_or(name.len(), |extra| split + extra);
1937
1938     // sort leading zeroes last
1939     let num_zeroes = after_zeroes - split;
1940
1941     match name[split..end].parse() {
1942         Ok(n) => (&name[..split], n, num_zeroes),
1943         Err(_) => (name, 0, num_zeroes),
1944     }
1945 }
1946
1947 fn item_module(w: &mut Buffer, cx: &Context, item: &clean::Item, items: &[clean::Item]) {
1948     document(w, cx, item);
1949
1950     let mut indices = (0..items.len()).filter(|i| !items[*i].is_stripped()).collect::<Vec<usize>>();
1951
1952     // the order of item types in the listing
1953     fn reorder(ty: ItemType) -> u8 {
1954         match ty {
1955             ItemType::ExternCrate => 0,
1956             ItemType::Import => 1,
1957             ItemType::Primitive => 2,
1958             ItemType::Module => 3,
1959             ItemType::Macro => 4,
1960             ItemType::Struct => 5,
1961             ItemType::Enum => 6,
1962             ItemType::Constant => 7,
1963             ItemType::Static => 8,
1964             ItemType::Trait => 9,
1965             ItemType::Function => 10,
1966             ItemType::Typedef => 12,
1967             ItemType::Union => 13,
1968             _ => 14 + ty as u8,
1969         }
1970     }
1971
1972     fn cmp(i1: &clean::Item, i2: &clean::Item, idx1: usize, idx2: usize) -> Ordering {
1973         let ty1 = i1.type_();
1974         let ty2 = i2.type_();
1975         if ty1 != ty2 {
1976             return (reorder(ty1), idx1).cmp(&(reorder(ty2), idx2));
1977         }
1978         let s1 = i1.stability.as_ref().map(|s| s.level);
1979         let s2 = i2.stability.as_ref().map(|s| s.level);
1980         match (s1, s2) {
1981             (Some(stability::Unstable), Some(stability::Stable)) => return Ordering::Greater,
1982             (Some(stability::Stable), Some(stability::Unstable)) => return Ordering::Less,
1983             _ => {}
1984         }
1985         let lhs = i1.name.as_ref().map_or("", |s| &**s);
1986         let rhs = i2.name.as_ref().map_or("", |s| &**s);
1987         name_key(lhs).cmp(&name_key(rhs))
1988     }
1989
1990     if cx.shared.sort_modules_alphabetically {
1991         indices.sort_by(|&i1, &i2| cmp(&items[i1], &items[i2], i1, i2));
1992     }
1993     // This call is to remove re-export duplicates in cases such as:
1994     //
1995     // ```
1996     // pub mod foo {
1997     //     pub mod bar {
1998     //         pub trait Double { fn foo(); }
1999     //     }
2000     // }
2001     //
2002     // pub use foo::bar::*;
2003     // pub use foo::*;
2004     // ```
2005     //
2006     // `Double` will appear twice in the generated docs.
2007     //
2008     // FIXME: This code is quite ugly and could be improved. Small issue: DefId
2009     // can be identical even if the elements are different (mostly in imports).
2010     // So in case this is an import, we keep everything by adding a "unique id"
2011     // (which is the position in the vector).
2012     indices.dedup_by_key(|i| {
2013         (
2014             items[*i].def_id,
2015             if items[*i].name.as_ref().is_some() { Some(full_path(cx, &items[*i])) } else { None },
2016             items[*i].type_(),
2017             if items[*i].is_import() { *i } else { 0 },
2018         )
2019     });
2020
2021     debug!("{:?}", indices);
2022     let mut curty = None;
2023     for &idx in &indices {
2024         let myitem = &items[idx];
2025         if myitem.is_stripped() {
2026             continue;
2027         }
2028
2029         let myty = Some(myitem.type_());
2030         if curty == Some(ItemType::ExternCrate) && myty == Some(ItemType::Import) {
2031             // Put `extern crate` and `use` re-exports in the same section.
2032             curty = myty;
2033         } else if myty != curty {
2034             if curty.is_some() {
2035                 write!(w, "</table>");
2036             }
2037             curty = myty;
2038             let (short, name) = item_ty_to_strs(&myty.unwrap());
2039             write!(
2040                 w,
2041                 "<h2 id='{id}' class='section-header'>\
2042                        <a href=\"#{id}\">{name}</a></h2>\n<table>",
2043                 id = cx.derive_id(short.to_owned()),
2044                 name = name
2045             );
2046         }
2047
2048         match myitem.inner {
2049             clean::ExternCrateItem(ref name, ref src) => {
2050                 use crate::html::format::anchor;
2051
2052                 match *src {
2053                     Some(ref src) => write!(
2054                         w,
2055                         "<tr><td><code>{}extern crate {} as {};",
2056                         myitem.visibility.print_with_space(),
2057                         anchor(myitem.def_id, src),
2058                         name
2059                     ),
2060                     None => write!(
2061                         w,
2062                         "<tr><td><code>{}extern crate {};",
2063                         myitem.visibility.print_with_space(),
2064                         anchor(myitem.def_id, name)
2065                     ),
2066                 }
2067                 write!(w, "</code></td></tr>");
2068             }
2069
2070             clean::ImportItem(ref import) => {
2071                 write!(
2072                     w,
2073                     "<tr><td><code>{}{}</code></td></tr>",
2074                     myitem.visibility.print_with_space(),
2075                     import.print()
2076                 );
2077             }
2078
2079             _ => {
2080                 if myitem.name.is_none() {
2081                     continue;
2082                 }
2083
2084                 let unsafety_flag = match myitem.inner {
2085                     clean::FunctionItem(ref func) | clean::ForeignFunctionItem(ref func)
2086                         if func.header.unsafety == hir::Unsafety::Unsafe =>
2087                     {
2088                         "<a title='unsafe function' href='#'><sup>⚠</sup></a>"
2089                     }
2090                     _ => "",
2091                 };
2092
2093                 let stab = myitem.stability_class();
2094                 let add = if stab.is_some() { " " } else { "" };
2095
2096                 let doc_value = myitem.doc_value().unwrap_or("");
2097                 write!(
2098                     w,
2099                     "\
2100                        <tr class='{stab}{add}module-item'>\
2101                            <td><a class=\"{class}\" href=\"{href}\" \
2102                                   title='{title}'>{name}</a>{unsafety_flag}</td>\
2103                            <td class='docblock-short'>{stab_tags}{docs}</td>\
2104                        </tr>",
2105                     name = *myitem.name.as_ref().unwrap(),
2106                     stab_tags = stability_tags(myitem),
2107                     docs = MarkdownSummaryLine(doc_value, &myitem.links()).to_string(),
2108                     class = myitem.type_(),
2109                     add = add,
2110                     stab = stab.unwrap_or_else(|| String::new()),
2111                     unsafety_flag = unsafety_flag,
2112                     href = item_path(myitem.type_(), myitem.name.as_ref().unwrap()),
2113                     title = [full_path(cx, myitem), myitem.type_().to_string()]
2114                         .iter()
2115                         .filter_map(|s| if !s.is_empty() { Some(s.as_str()) } else { None })
2116                         .collect::<Vec<_>>()
2117                         .join(" "),
2118                 );
2119             }
2120         }
2121     }
2122
2123     if curty.is_some() {
2124         write!(w, "</table>");
2125     }
2126 }
2127
2128 /// Render the stability and deprecation tags that are displayed in the item's summary at the
2129 /// module level.
2130 fn stability_tags(item: &clean::Item) -> String {
2131     let mut tags = String::new();
2132
2133     fn tag_html(class: &str, contents: &str) -> String {
2134         format!(r#"<span class="stab {}">{}</span>"#, class, contents)
2135     }
2136
2137     // The trailing space after each tag is to space it properly against the rest of the docs.
2138     if item.deprecation().is_some() {
2139         let mut message = "Deprecated";
2140         if let Some(ref stab) = item.stability {
2141             if let Some(ref depr) = stab.deprecation {
2142                 if let Some(ref since) = depr.since {
2143                     if !stability::deprecation_in_effect(&since) {
2144                         message = "Deprecation planned";
2145                     }
2146                 }
2147             }
2148         }
2149         tags += &tag_html("deprecated", message);
2150     }
2151
2152     if let Some(stab) = item.stability.as_ref().filter(|s| s.level == stability::Unstable) {
2153         if stab.feature.as_deref() == Some("rustc_private") {
2154             tags += &tag_html("internal", "Internal");
2155         } else {
2156             tags += &tag_html("unstable", "Experimental");
2157         }
2158     }
2159
2160     if let Some(ref cfg) = item.attrs.cfg {
2161         tags += &tag_html("portability", &cfg.render_short_html());
2162     }
2163
2164     tags
2165 }
2166
2167 /// Render the stability and/or deprecation warning that is displayed at the top of the item's
2168 /// documentation.
2169 fn short_stability(item: &clean::Item, cx: &Context) -> Vec<String> {
2170     let mut stability = vec![];
2171     let error_codes = cx.shared.codes;
2172
2173     if let Some(Deprecation { note, since }) = &item.deprecation() {
2174         // We display deprecation messages for #[deprecated] and #[rustc_deprecated]
2175         // but only display the future-deprecation messages for #[rustc_deprecated].
2176         let mut message = if let Some(since) = since {
2177             format!("Deprecated since {}", Escape(since))
2178         } else {
2179             String::from("Deprecated")
2180         };
2181         if let Some(ref stab) = item.stability {
2182             if let Some(ref depr) = stab.deprecation {
2183                 if let Some(ref since) = depr.since {
2184                     if !stability::deprecation_in_effect(&since) {
2185                         message = format!("Deprecating in {}", Escape(&since));
2186                     }
2187                 }
2188             }
2189         }
2190
2191         if let Some(note) = note {
2192             let mut ids = cx.id_map.borrow_mut();
2193             let html = MarkdownHtml(
2194                 &note,
2195                 &mut ids,
2196                 error_codes,
2197                 cx.shared.edition,
2198                 &cx.shared.playground,
2199             );
2200             message.push_str(&format!(": {}", html.to_string()));
2201         }
2202         stability.push(format!("<div class='stab deprecated'>{}</div>", message));
2203     }
2204
2205     if let Some(stab) = item.stability.as_ref().filter(|stab| stab.level == stability::Unstable) {
2206         let is_rustc_private = stab.feature.as_deref() == Some("rustc_private");
2207
2208         let mut message = if is_rustc_private {
2209             "<span class='emoji'>⚙️</span> This is an internal compiler API."
2210         } else {
2211             "<span class='emoji'>🔬</span> This is a nightly-only experimental API."
2212         }
2213         .to_owned();
2214
2215         if let Some(feature) = stab.feature.as_deref() {
2216             let mut feature = format!("<code>{}</code>", Escape(&feature));
2217             if let (Some(url), Some(issue)) = (&cx.shared.issue_tracker_base_url, stab.issue) {
2218                 feature.push_str(&format!(
2219                     "&nbsp;<a href=\"{url}{issue}\">#{issue}</a>",
2220                     url = url,
2221                     issue = issue
2222                 ));
2223             }
2224
2225             message.push_str(&format!(" ({})", feature));
2226         }
2227
2228         if let Some(unstable_reason) = &stab.unstable_reason {
2229             // Provide a more informative message than the compiler help.
2230             let unstable_reason = if is_rustc_private {
2231                 "This crate is being loaded from the sysroot, a permanently unstable location \
2232                 for private compiler dependencies. It is not intended for general use. Prefer \
2233                 using a public version of this crate from \
2234                 [crates.io](https://crates.io) via [`Cargo.toml`]\
2235                 (https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html)."
2236             } else {
2237                 unstable_reason
2238             };
2239
2240             let mut ids = cx.id_map.borrow_mut();
2241             message = format!(
2242                 "<details><summary>{}</summary>{}</details>",
2243                 message,
2244                 MarkdownHtml(
2245                     &unstable_reason,
2246                     &mut ids,
2247                     error_codes,
2248                     cx.shared.edition,
2249                     &cx.shared.playground,
2250                 )
2251                 .to_string()
2252             );
2253         }
2254
2255         let class = if is_rustc_private { "internal" } else { "unstable" };
2256         stability.push(format!("<div class='stab {}'>{}</div>", class, message));
2257     }
2258
2259     if let Some(ref cfg) = item.attrs.cfg {
2260         stability.push(format!("<div class='stab portability'>{}</div>", cfg.render_long_html()));
2261     }
2262
2263     stability
2264 }
2265
2266 fn item_constant(w: &mut Buffer, cx: &Context, it: &clean::Item, c: &clean::Constant) {
2267     write!(w, "<pre class='rust const'>");
2268     render_attributes(w, it, false);
2269
2270     write!(
2271         w,
2272         "{vis}const \
2273                {name}: {typ}",
2274         vis = it.visibility.print_with_space(),
2275         name = it.name.as_ref().unwrap(),
2276         typ = c.type_.print(),
2277     );
2278
2279     if c.value.is_some() || c.is_literal {
2280         write!(w, " = {expr};", expr = Escape(&c.expr));
2281     } else {
2282         write!(w, ";");
2283     }
2284
2285     if let Some(value) = &c.value {
2286         if !c.is_literal {
2287             let value_lowercase = value.to_lowercase();
2288             let expr_lowercase = c.expr.to_lowercase();
2289
2290             if value_lowercase != expr_lowercase
2291                 && value_lowercase.trim_end_matches("i32") != expr_lowercase
2292             {
2293                 write!(w, " // {value}", value = Escape(value));
2294             }
2295         }
2296     }
2297
2298     write!(w, "</pre>");
2299     document(w, cx, it)
2300 }
2301
2302 fn item_static(w: &mut Buffer, cx: &Context, it: &clean::Item, s: &clean::Static) {
2303     write!(w, "<pre class='rust static'>");
2304     render_attributes(w, it, false);
2305     write!(
2306         w,
2307         "{vis}static {mutability}\
2308                {name}: {typ}</pre>",
2309         vis = it.visibility.print_with_space(),
2310         mutability = s.mutability.print_with_space(),
2311         name = it.name.as_ref().unwrap(),
2312         typ = s.type_.print()
2313     );
2314     document(w, cx, it)
2315 }
2316
2317 fn item_function(w: &mut Buffer, cx: &Context, it: &clean::Item, f: &clean::Function) {
2318     let header_len = format!(
2319         "{}{}{}{}{:#}fn {}{:#}",
2320         it.visibility.print_with_space(),
2321         f.header.constness.print_with_space(),
2322         f.header.asyncness.print_with_space(),
2323         f.header.unsafety.print_with_space(),
2324         print_abi_with_space(f.header.abi),
2325         it.name.as_ref().unwrap(),
2326         f.generics.print()
2327     )
2328     .len();
2329     write!(w, "{}<pre class='rust fn'>", render_spotlight_traits(it));
2330     render_attributes(w, it, false);
2331     write!(
2332         w,
2333         "{vis}{constness}{asyncness}{unsafety}{abi}fn \
2334            {name}{generics}{decl}{where_clause}</pre>",
2335         vis = it.visibility.print_with_space(),
2336         constness = f.header.constness.print_with_space(),
2337         asyncness = f.header.asyncness.print_with_space(),
2338         unsafety = f.header.unsafety.print_with_space(),
2339         abi = print_abi_with_space(f.header.abi),
2340         name = it.name.as_ref().unwrap(),
2341         generics = f.generics.print(),
2342         where_clause = WhereClause { gens: &f.generics, indent: 0, end_newline: true },
2343         decl = Function { decl: &f.decl, header_len, indent: 0, asyncness: f.header.asyncness }
2344             .print()
2345     );
2346     document(w, cx, it)
2347 }
2348
2349 fn render_implementor(
2350     cx: &Context,
2351     implementor: &Impl,
2352     w: &mut Buffer,
2353     implementor_dups: &FxHashMap<&str, (DefId, bool)>,
2354     aliases: &[String],
2355 ) {
2356     // If there's already another implementor that has the same abbridged name, use the
2357     // full path, for example in `std::iter::ExactSizeIterator`
2358     let use_absolute = match implementor.inner_impl().for_ {
2359         clean::ResolvedPath { ref path, is_generic: false, .. }
2360         | clean::BorrowedRef {
2361             type_: box clean::ResolvedPath { ref path, is_generic: false, .. },
2362             ..
2363         } => implementor_dups[path.last_name()].1,
2364         _ => false,
2365     };
2366     render_impl(
2367         w,
2368         cx,
2369         implementor,
2370         AssocItemLink::Anchor(None),
2371         RenderMode::Normal,
2372         implementor.impl_item.stable_since(),
2373         false,
2374         Some(use_absolute),
2375         false,
2376         false,
2377         aliases,
2378     );
2379 }
2380
2381 fn render_impls(cx: &Context, w: &mut Buffer, traits: &[&&Impl], containing_item: &clean::Item) {
2382     let mut impls = traits
2383         .iter()
2384         .map(|i| {
2385             let did = i.trait_did().unwrap();
2386             let assoc_link = AssocItemLink::GotoSource(did, &i.inner_impl().provided_trait_methods);
2387             let mut buffer = if w.is_for_html() { Buffer::html() } else { Buffer::new() };
2388             render_impl(
2389                 &mut buffer,
2390                 cx,
2391                 i,
2392                 assoc_link,
2393                 RenderMode::Normal,
2394                 containing_item.stable_since(),
2395                 true,
2396                 None,
2397                 false,
2398                 true,
2399                 &[],
2400             );
2401             buffer.into_inner()
2402         })
2403         .collect::<Vec<_>>();
2404     impls.sort();
2405     w.write_str(&impls.join(""));
2406 }
2407
2408 fn bounds(t_bounds: &[clean::GenericBound], trait_alias: bool) -> String {
2409     let mut bounds = String::new();
2410     if !t_bounds.is_empty() {
2411         if !trait_alias {
2412             bounds.push_str(": ");
2413         }
2414         for (i, p) in t_bounds.iter().enumerate() {
2415             if i > 0 {
2416                 bounds.push_str(" + ");
2417             }
2418             bounds.push_str(&p.print().to_string());
2419         }
2420     }
2421     bounds
2422 }
2423
2424 fn compare_impl<'a, 'b>(lhs: &'a &&Impl, rhs: &'b &&Impl) -> Ordering {
2425     let lhs = format!("{}", lhs.inner_impl().print());
2426     let rhs = format!("{}", rhs.inner_impl().print());
2427
2428     // lhs and rhs are formatted as HTML, which may be unnecessary
2429     name_key(&lhs).cmp(&name_key(&rhs))
2430 }
2431
2432 fn item_trait(w: &mut Buffer, cx: &Context, it: &clean::Item, t: &clean::Trait) {
2433     let bounds = bounds(&t.bounds, false);
2434     let types = t.items.iter().filter(|m| m.is_associated_type()).collect::<Vec<_>>();
2435     let consts = t.items.iter().filter(|m| m.is_associated_const()).collect::<Vec<_>>();
2436     let required = t.items.iter().filter(|m| m.is_ty_method()).collect::<Vec<_>>();
2437     let provided = t.items.iter().filter(|m| m.is_method()).collect::<Vec<_>>();
2438
2439     // Output the trait definition
2440     wrap_into_docblock(w, |w| {
2441         write!(w, "<pre class='rust trait'>");
2442         render_attributes(w, it, true);
2443         write!(
2444             w,
2445             "{}{}{}trait {}{}{}",
2446             it.visibility.print_with_space(),
2447             t.unsafety.print_with_space(),
2448             if t.is_auto { "auto " } else { "" },
2449             it.name.as_ref().unwrap(),
2450             t.generics.print(),
2451             bounds
2452         );
2453
2454         if !t.generics.where_predicates.is_empty() {
2455             write!(w, "{}", WhereClause { gens: &t.generics, indent: 0, end_newline: true });
2456         } else {
2457             write!(w, " ");
2458         }
2459
2460         if t.items.is_empty() {
2461             write!(w, "{{ }}");
2462         } else {
2463             // FIXME: we should be using a derived_id for the Anchors here
2464             write!(w, "{{\n");
2465             for t in &types {
2466                 render_assoc_item(w, t, AssocItemLink::Anchor(None), ItemType::Trait);
2467                 write!(w, ";\n");
2468             }
2469             if !types.is_empty() && !consts.is_empty() {
2470                 w.write_str("\n");
2471             }
2472             for t in &consts {
2473                 render_assoc_item(w, t, AssocItemLink::Anchor(None), ItemType::Trait);
2474                 write!(w, ";\n");
2475             }
2476             if !consts.is_empty() && !required.is_empty() {
2477                 w.write_str("\n");
2478             }
2479             for (pos, m) in required.iter().enumerate() {
2480                 render_assoc_item(w, m, AssocItemLink::Anchor(None), ItemType::Trait);
2481                 write!(w, ";\n");
2482
2483                 if pos < required.len() - 1 {
2484                     write!(w, "<div class='item-spacer'></div>");
2485                 }
2486             }
2487             if !required.is_empty() && !provided.is_empty() {
2488                 w.write_str("\n");
2489             }
2490             for (pos, m) in provided.iter().enumerate() {
2491                 render_assoc_item(w, m, AssocItemLink::Anchor(None), ItemType::Trait);
2492                 match m.inner {
2493                     clean::MethodItem(ref inner) if !inner.generics.where_predicates.is_empty() => {
2494                         write!(w, ",\n    {{ ... }}\n");
2495                     }
2496                     _ => {
2497                         write!(w, " {{ ... }}\n");
2498                     }
2499                 }
2500                 if pos < provided.len() - 1 {
2501                     write!(w, "<div class='item-spacer'></div>");
2502                 }
2503             }
2504             write!(w, "}}");
2505         }
2506         write!(w, "</pre>")
2507     });
2508
2509     // Trait documentation
2510     document(w, cx, it);
2511
2512     fn write_small_section_header(w: &mut Buffer, id: &str, title: &str, extra_content: &str) {
2513         write!(
2514             w,
2515             "
2516             <h2 id='{0}' class='small-section-header'>\
2517               {1}<a href='#{0}' class='anchor'></a>\
2518             </h2>{2}",
2519             id, title, extra_content
2520         )
2521     }
2522
2523     fn write_loading_content(w: &mut Buffer, extra_content: &str) {
2524         write!(w, "{}<span class='loading-content'>Loading content...</span>", extra_content)
2525     }
2526
2527     fn trait_item(w: &mut Buffer, cx: &Context, m: &clean::Item, t: &clean::Item) {
2528         let name = m.name.as_ref().unwrap();
2529         let item_type = m.type_();
2530         let id = cx.derive_id(format!("{}.{}", item_type, name));
2531         let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
2532         write!(
2533             w,
2534             "<h3 id='{id}' class='method'>{extra}<code id='{ns_id}'>",
2535             extra = render_spotlight_traits(m),
2536             id = id,
2537             ns_id = ns_id
2538         );
2539         render_assoc_item(w, m, AssocItemLink::Anchor(Some(&id)), ItemType::Impl);
2540         write!(w, "</code>");
2541         render_stability_since(w, m, t);
2542         write!(w, "</h3>");
2543         document(w, cx, m);
2544     }
2545
2546     if !types.is_empty() {
2547         write_small_section_header(
2548             w,
2549             "associated-types",
2550             "Associated Types",
2551             "<div class='methods'>",
2552         );
2553         for t in &types {
2554             trait_item(w, cx, *t, it);
2555         }
2556         write_loading_content(w, "</div>");
2557     }
2558
2559     if !consts.is_empty() {
2560         write_small_section_header(
2561             w,
2562             "associated-const",
2563             "Associated Constants",
2564             "<div class='methods'>",
2565         );
2566         for t in &consts {
2567             trait_item(w, cx, *t, it);
2568         }
2569         write_loading_content(w, "</div>");
2570     }
2571
2572     // Output the documentation for each function individually
2573     if !required.is_empty() {
2574         write_small_section_header(
2575             w,
2576             "required-methods",
2577             "Required methods",
2578             "<div class='methods'>",
2579         );
2580         for m in &required {
2581             trait_item(w, cx, *m, it);
2582         }
2583         write_loading_content(w, "</div>");
2584     }
2585     if !provided.is_empty() {
2586         write_small_section_header(
2587             w,
2588             "provided-methods",
2589             "Provided methods",
2590             "<div class='methods'>",
2591         );
2592         for m in &provided {
2593             trait_item(w, cx, *m, it);
2594         }
2595         write_loading_content(w, "</div>");
2596     }
2597
2598     // If there are methods directly on this trait object, render them here.
2599     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All);
2600
2601     if let Some(implementors) = cx.cache.implementors.get(&it.def_id) {
2602         // The DefId is for the first Type found with that name. The bool is
2603         // if any Types with the same name but different DefId have been found.
2604         let mut implementor_dups: FxHashMap<&str, (DefId, bool)> = FxHashMap::default();
2605         for implementor in implementors {
2606             match implementor.inner_impl().for_ {
2607                 clean::ResolvedPath { ref path, did, is_generic: false, .. }
2608                 | clean::BorrowedRef {
2609                     type_: box clean::ResolvedPath { ref path, did, is_generic: false, .. },
2610                     ..
2611                 } => {
2612                     let &mut (prev_did, ref mut has_duplicates) =
2613                         implementor_dups.entry(path.last_name()).or_insert((did, false));
2614                     if prev_did != did {
2615                         *has_duplicates = true;
2616                     }
2617                 }
2618                 _ => {}
2619             }
2620         }
2621
2622         let (local, foreign) = implementors.iter().partition::<Vec<_>, _>(|i| {
2623             i.inner_impl().for_.def_id().map_or(true, |d| cx.cache.paths.contains_key(&d))
2624         });
2625
2626         let (mut synthetic, mut concrete): (Vec<&&Impl>, Vec<&&Impl>) =
2627             local.iter().partition(|i| i.inner_impl().synthetic);
2628
2629         synthetic.sort_by(compare_impl);
2630         concrete.sort_by(compare_impl);
2631
2632         if !foreign.is_empty() {
2633             write_small_section_header(w, "foreign-impls", "Implementations on Foreign Types", "");
2634
2635             for implementor in foreign {
2636                 let assoc_link = AssocItemLink::GotoSource(
2637                     implementor.impl_item.def_id,
2638                     &implementor.inner_impl().provided_trait_methods,
2639                 );
2640                 render_impl(
2641                     w,
2642                     cx,
2643                     &implementor,
2644                     assoc_link,
2645                     RenderMode::Normal,
2646                     implementor.impl_item.stable_since(),
2647                     false,
2648                     None,
2649                     true,
2650                     false,
2651                     &[],
2652                 );
2653             }
2654             write_loading_content(w, "");
2655         }
2656
2657         write_small_section_header(
2658             w,
2659             "implementors",
2660             "Implementors",
2661             "<div class='item-list' id='implementors-list'>",
2662         );
2663         for implementor in concrete {
2664             render_implementor(cx, implementor, w, &implementor_dups, &[]);
2665         }
2666         write_loading_content(w, "</div>");
2667
2668         if t.auto {
2669             write_small_section_header(
2670                 w,
2671                 "synthetic-implementors",
2672                 "Auto implementors",
2673                 "<div class='item-list' id='synthetic-implementors-list'>",
2674             );
2675             for implementor in synthetic {
2676                 render_implementor(
2677                     cx,
2678                     implementor,
2679                     w,
2680                     &implementor_dups,
2681                     &collect_paths_for_type(implementor.inner_impl().for_.clone()),
2682                 );
2683             }
2684             write_loading_content(w, "</div>");
2685         }
2686     } else {
2687         // even without any implementations to write in, we still want the heading and list, so the
2688         // implementors javascript file pulled in below has somewhere to write the impls into
2689         write_small_section_header(
2690             w,
2691             "implementors",
2692             "Implementors",
2693             "<div class='item-list' id='implementors-list'>",
2694         );
2695         write_loading_content(w, "</div>");
2696
2697         if t.auto {
2698             write_small_section_header(
2699                 w,
2700                 "synthetic-implementors",
2701                 "Auto implementors",
2702                 "<div class='item-list' id='synthetic-implementors-list'>",
2703             );
2704             write_loading_content(w, "</div>");
2705         }
2706     }
2707
2708     write!(
2709         w,
2710         "<script type=\"text/javascript\" \
2711                  src=\"{root_path}/implementors/{path}/{ty}.{name}.js\" async>\
2712          </script>",
2713         root_path = vec![".."; cx.current.len()].join("/"),
2714         path = if it.def_id.is_local() {
2715             cx.current.join("/")
2716         } else {
2717             let (ref path, _) = cx.cache.external_paths[&it.def_id];
2718             path[..path.len() - 1].join("/")
2719         },
2720         ty = it.type_(),
2721         name = *it.name.as_ref().unwrap()
2722     );
2723 }
2724
2725 fn naive_assoc_href(it: &clean::Item, link: AssocItemLink<'_>) -> String {
2726     use crate::html::item_type::ItemType::*;
2727
2728     let name = it.name.as_ref().unwrap();
2729     let ty = match it.type_() {
2730         Typedef | AssocType => AssocType,
2731         s @ _ => s,
2732     };
2733
2734     let anchor = format!("#{}.{}", ty, name);
2735     match link {
2736         AssocItemLink::Anchor(Some(ref id)) => format!("#{}", id),
2737         AssocItemLink::Anchor(None) => anchor,
2738         AssocItemLink::GotoSource(did, _) => {
2739             href(did).map(|p| format!("{}{}", p.0, anchor)).unwrap_or(anchor)
2740         }
2741     }
2742 }
2743
2744 fn assoc_const(
2745     w: &mut Buffer,
2746     it: &clean::Item,
2747     ty: &clean::Type,
2748     _default: Option<&String>,
2749     link: AssocItemLink<'_>,
2750     extra: &str,
2751 ) {
2752     write!(
2753         w,
2754         "{}{}const <a href='{}' class=\"constant\"><b>{}</b></a>: {}",
2755         extra,
2756         it.visibility.print_with_space(),
2757         naive_assoc_href(it, link),
2758         it.name.as_ref().unwrap(),
2759         ty.print()
2760     );
2761 }
2762
2763 fn assoc_type(
2764     w: &mut Buffer,
2765     it: &clean::Item,
2766     bounds: &[clean::GenericBound],
2767     default: Option<&clean::Type>,
2768     link: AssocItemLink<'_>,
2769     extra: &str,
2770 ) {
2771     write!(
2772         w,
2773         "{}type <a href='{}' class=\"type\">{}</a>",
2774         extra,
2775         naive_assoc_href(it, link),
2776         it.name.as_ref().unwrap()
2777     );
2778     if !bounds.is_empty() {
2779         write!(w, ": {}", print_generic_bounds(bounds))
2780     }
2781     if let Some(default) = default {
2782         write!(w, " = {}", default.print())
2783     }
2784 }
2785
2786 fn render_stability_since_raw(w: &mut Buffer, ver: Option<&str>, containing_ver: Option<&str>) {
2787     if let Some(v) = ver {
2788         if containing_ver != ver && v.len() > 0 {
2789             write!(w, "<span class='since' title='Stable since Rust version {0}'>{0}</span>", v)
2790         }
2791     }
2792 }
2793
2794 fn render_stability_since(w: &mut Buffer, item: &clean::Item, containing_item: &clean::Item) {
2795     render_stability_since_raw(w, item.stable_since(), containing_item.stable_since())
2796 }
2797
2798 fn render_assoc_item(
2799     w: &mut Buffer,
2800     item: &clean::Item,
2801     link: AssocItemLink<'_>,
2802     parent: ItemType,
2803 ) {
2804     fn method(
2805         w: &mut Buffer,
2806         meth: &clean::Item,
2807         header: hir::FnHeader,
2808         g: &clean::Generics,
2809         d: &clean::FnDecl,
2810         link: AssocItemLink<'_>,
2811         parent: ItemType,
2812     ) {
2813         let name = meth.name.as_ref().unwrap();
2814         let anchor = format!("#{}.{}", meth.type_(), name);
2815         let href = match link {
2816             AssocItemLink::Anchor(Some(ref id)) => format!("#{}", id),
2817             AssocItemLink::Anchor(None) => anchor,
2818             AssocItemLink::GotoSource(did, provided_methods) => {
2819                 // We're creating a link from an impl-item to the corresponding
2820                 // trait-item and need to map the anchored type accordingly.
2821                 let ty = if provided_methods.contains(name) {
2822                     ItemType::Method
2823                 } else {
2824                     ItemType::TyMethod
2825                 };
2826
2827                 href(did).map(|p| format!("{}#{}.{}", p.0, ty, name)).unwrap_or(anchor)
2828             }
2829         };
2830         let mut header_len = format!(
2831             "{}{}{}{}{}{:#}fn {}{:#}",
2832             meth.visibility.print_with_space(),
2833             header.constness.print_with_space(),
2834             header.asyncness.print_with_space(),
2835             header.unsafety.print_with_space(),
2836             print_default_space(meth.is_default()),
2837             print_abi_with_space(header.abi),
2838             name,
2839             g.print()
2840         )
2841         .len();
2842         let (indent, end_newline) = if parent == ItemType::Trait {
2843             header_len += 4;
2844             (4, false)
2845         } else {
2846             (0, true)
2847         };
2848         render_attributes(w, meth, false);
2849         write!(
2850             w,
2851             "{}{}{}{}{}{}{}fn <a href='{href}' class='fnname'>{name}</a>\
2852                    {generics}{decl}{where_clause}",
2853             if parent == ItemType::Trait { "    " } else { "" },
2854             meth.visibility.print_with_space(),
2855             header.constness.print_with_space(),
2856             header.asyncness.print_with_space(),
2857             header.unsafety.print_with_space(),
2858             print_default_space(meth.is_default()),
2859             print_abi_with_space(header.abi),
2860             href = href,
2861             name = name,
2862             generics = g.print(),
2863             decl = Function { decl: d, header_len, indent, asyncness: header.asyncness }.print(),
2864             where_clause = WhereClause { gens: g, indent, end_newline }
2865         )
2866     }
2867     match item.inner {
2868         clean::StrippedItem(..) => {}
2869         clean::TyMethodItem(ref m) => method(w, item, m.header, &m.generics, &m.decl, link, parent),
2870         clean::MethodItem(ref m) => method(w, item, m.header, &m.generics, &m.decl, link, parent),
2871         clean::AssocConstItem(ref ty, ref default) => assoc_const(
2872             w,
2873             item,
2874             ty,
2875             default.as_ref(),
2876             link,
2877             if parent == ItemType::Trait { "    " } else { "" },
2878         ),
2879         clean::AssocTypeItem(ref bounds, ref default) => assoc_type(
2880             w,
2881             item,
2882             bounds,
2883             default.as_ref(),
2884             link,
2885             if parent == ItemType::Trait { "    " } else { "" },
2886         ),
2887         _ => panic!("render_assoc_item called on non-associated-item"),
2888     }
2889 }
2890
2891 fn item_struct(w: &mut Buffer, cx: &Context, it: &clean::Item, s: &clean::Struct) {
2892     wrap_into_docblock(w, |w| {
2893         write!(w, "<pre class='rust struct'>");
2894         render_attributes(w, it, true);
2895         render_struct(w, it, Some(&s.generics), s.struct_type, &s.fields, "", true);
2896         write!(w, "</pre>")
2897     });
2898
2899     document(w, cx, it);
2900     let mut fields = s
2901         .fields
2902         .iter()
2903         .filter_map(|f| match f.inner {
2904             clean::StructFieldItem(ref ty) => Some((f, ty)),
2905             _ => None,
2906         })
2907         .peekable();
2908     if let doctree::Plain = s.struct_type {
2909         if fields.peek().is_some() {
2910             write!(
2911                 w,
2912                 "<h2 id='fields' class='fields small-section-header'>
2913                        Fields{}<a href='#fields' class='anchor'></a></h2>",
2914                 document_non_exhaustive_header(it)
2915             );
2916             document_non_exhaustive(w, it);
2917             for (field, ty) in fields {
2918                 let id = cx.derive_id(format!(
2919                     "{}.{}",
2920                     ItemType::StructField,
2921                     field.name.as_ref().unwrap()
2922                 ));
2923                 let ns_id = cx.derive_id(format!(
2924                     "{}.{}",
2925                     field.name.as_ref().unwrap(),
2926                     ItemType::StructField.name_space()
2927                 ));
2928                 write!(
2929                     w,
2930                     "<span id=\"{id}\" class=\"{item_type} small-section-header\">\
2931                            <a href=\"#{id}\" class=\"anchor field\"></a>\
2932                            <code id=\"{ns_id}\">{name}: {ty}</code>\
2933                            </span>",
2934                     item_type = ItemType::StructField,
2935                     id = id,
2936                     ns_id = ns_id,
2937                     name = field.name.as_ref().unwrap(),
2938                     ty = ty.print()
2939                 );
2940                 document(w, cx, field);
2941             }
2942         }
2943     }
2944     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
2945 }
2946
2947 fn item_union(w: &mut Buffer, cx: &Context, it: &clean::Item, s: &clean::Union) {
2948     wrap_into_docblock(w, |w| {
2949         write!(w, "<pre class='rust union'>");
2950         render_attributes(w, it, true);
2951         render_union(w, it, Some(&s.generics), &s.fields, "", true);
2952         write!(w, "</pre>")
2953     });
2954
2955     document(w, cx, it);
2956     let mut fields = s
2957         .fields
2958         .iter()
2959         .filter_map(|f| match f.inner {
2960             clean::StructFieldItem(ref ty) => Some((f, ty)),
2961             _ => None,
2962         })
2963         .peekable();
2964     if fields.peek().is_some() {
2965         write!(
2966             w,
2967             "<h2 id='fields' class='fields small-section-header'>
2968                    Fields<a href='#fields' class='anchor'></a></h2>"
2969         );
2970         for (field, ty) in fields {
2971             let name = field.name.as_ref().expect("union field name");
2972             let id = format!("{}.{}", ItemType::StructField, name);
2973             write!(
2974                 w,
2975                 "<span id=\"{id}\" class=\"{shortty} small-section-header\">\
2976                            <a href=\"#{id}\" class=\"anchor field\"></a>\
2977                            <code>{name}: {ty}</code>\
2978                        </span>",
2979                 id = id,
2980                 name = name,
2981                 shortty = ItemType::StructField,
2982                 ty = ty.print()
2983             );
2984             if let Some(stability_class) = field.stability_class() {
2985                 write!(w, "<span class='stab {stab}'></span>", stab = stability_class);
2986             }
2987             document(w, cx, field);
2988         }
2989     }
2990     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
2991 }
2992
2993 fn item_enum(w: &mut Buffer, cx: &Context, it: &clean::Item, e: &clean::Enum) {
2994     wrap_into_docblock(w, |w| {
2995         write!(w, "<pre class='rust enum'>");
2996         render_attributes(w, it, true);
2997         write!(
2998             w,
2999             "{}enum {}{}{}",
3000             it.visibility.print_with_space(),
3001             it.name.as_ref().unwrap(),
3002             e.generics.print(),
3003             WhereClause { gens: &e.generics, indent: 0, end_newline: true }
3004         );
3005         if e.variants.is_empty() && !e.variants_stripped {
3006             write!(w, " {{}}");
3007         } else {
3008             write!(w, " {{\n");
3009             for v in &e.variants {
3010                 write!(w, "    ");
3011                 let name = v.name.as_ref().unwrap();
3012                 match v.inner {
3013                     clean::VariantItem(ref var) => match var.kind {
3014                         clean::VariantKind::CLike => write!(w, "{}", name),
3015                         clean::VariantKind::Tuple(ref tys) => {
3016                             write!(w, "{}(", name);
3017                             for (i, ty) in tys.iter().enumerate() {
3018                                 if i > 0 {
3019                                     write!(w, ",&nbsp;")
3020                                 }
3021                                 write!(w, "{}", ty.print());
3022                             }
3023                             write!(w, ")");
3024                         }
3025                         clean::VariantKind::Struct(ref s) => {
3026                             render_struct(w, v, None, s.struct_type, &s.fields, "    ", false);
3027                         }
3028                     },
3029                     _ => unreachable!(),
3030                 }
3031                 write!(w, ",\n");
3032             }
3033
3034             if e.variants_stripped {
3035                 write!(w, "    // some variants omitted\n");
3036             }
3037             write!(w, "}}");
3038         }
3039         write!(w, "</pre>")
3040     });
3041
3042     document(w, cx, it);
3043     if !e.variants.is_empty() {
3044         write!(
3045             w,
3046             "<h2 id='variants' class='variants small-section-header'>
3047                    Variants{}<a href='#variants' class='anchor'></a></h2>\n",
3048             document_non_exhaustive_header(it)
3049         );
3050         document_non_exhaustive(w, it);
3051         for variant in &e.variants {
3052             let id =
3053                 cx.derive_id(format!("{}.{}", ItemType::Variant, variant.name.as_ref().unwrap()));
3054             let ns_id = cx.derive_id(format!(
3055                 "{}.{}",
3056                 variant.name.as_ref().unwrap(),
3057                 ItemType::Variant.name_space()
3058             ));
3059             write!(
3060                 w,
3061                 "<div id=\"{id}\" class=\"variant small-section-header\">\
3062                        <a href=\"#{id}\" class=\"anchor field\"></a>\
3063                        <code id='{ns_id}'>{name}",
3064                 id = id,
3065                 ns_id = ns_id,
3066                 name = variant.name.as_ref().unwrap()
3067             );
3068             if let clean::VariantItem(ref var) = variant.inner {
3069                 if let clean::VariantKind::Tuple(ref tys) = var.kind {
3070                     write!(w, "(");
3071                     for (i, ty) in tys.iter().enumerate() {
3072                         if i > 0 {
3073                             write!(w, ",&nbsp;");
3074                         }
3075                         write!(w, "{}", ty.print());
3076                     }
3077                     write!(w, ")");
3078                 }
3079             }
3080             write!(w, "</code></div>");
3081             document(w, cx, variant);
3082             document_non_exhaustive(w, variant);
3083
3084             use crate::clean::{Variant, VariantKind};
3085             if let clean::VariantItem(Variant { kind: VariantKind::Struct(ref s) }) = variant.inner
3086             {
3087                 let variant_id = cx.derive_id(format!(
3088                     "{}.{}.fields",
3089                     ItemType::Variant,
3090                     variant.name.as_ref().unwrap()
3091                 ));
3092                 write!(w, "<div class='autohide sub-variant' id='{id}'>", id = variant_id);
3093                 write!(
3094                     w,
3095                     "<h3>Fields of <b>{name}</b></h3><div>",
3096                     name = variant.name.as_ref().unwrap()
3097                 );
3098                 for field in &s.fields {
3099                     use crate::clean::StructFieldItem;
3100                     if let StructFieldItem(ref ty) = field.inner {
3101                         let id = cx.derive_id(format!(
3102                             "variant.{}.field.{}",
3103                             variant.name.as_ref().unwrap(),
3104                             field.name.as_ref().unwrap()
3105                         ));
3106                         let ns_id = cx.derive_id(format!(
3107                             "{}.{}.{}.{}",
3108                             variant.name.as_ref().unwrap(),
3109                             ItemType::Variant.name_space(),
3110                             field.name.as_ref().unwrap(),
3111                             ItemType::StructField.name_space()
3112                         ));
3113                         write!(
3114                             w,
3115                             "<span id=\"{id}\" class=\"variant small-section-header\">\
3116                                    <a href=\"#{id}\" class=\"anchor field\"></a>\
3117                                    <code id='{ns_id}'>{f}:&nbsp;{t}\
3118                                    </code></span>",
3119                             id = id,
3120                             ns_id = ns_id,
3121                             f = field.name.as_ref().unwrap(),
3122                             t = ty.print()
3123                         );
3124                         document(w, cx, field);
3125                     }
3126                 }
3127                 write!(w, "</div></div>");
3128             }
3129             render_stability_since(w, variant, it);
3130         }
3131     }
3132     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3133 }
3134
3135 fn render_attribute(attr: &ast::MetaItem) -> Option<String> {
3136     let path = pprust::path_to_string(&attr.path);
3137
3138     if attr.is_word() {
3139         Some(path)
3140     } else if let Some(v) = attr.value_str() {
3141         Some(format!("{} = {:?}", path, v))
3142     } else if let Some(values) = attr.meta_item_list() {
3143         let display: Vec<_> = values
3144             .iter()
3145             .filter_map(|attr| attr.meta_item().and_then(|mi| render_attribute(mi)))
3146             .collect();
3147
3148         if display.len() > 0 { Some(format!("{}({})", path, display.join(", "))) } else { None }
3149     } else {
3150         None
3151     }
3152 }
3153
3154 const ATTRIBUTE_WHITELIST: &'static [Symbol] = &[
3155     sym::export_name,
3156     sym::lang,
3157     sym::link_section,
3158     sym::must_use,
3159     sym::no_mangle,
3160     sym::repr,
3161     sym::non_exhaustive,
3162 ];
3163
3164 // The `top` parameter is used when generating the item declaration to ensure it doesn't have a
3165 // left padding. For example:
3166 //
3167 // #[foo] <----- "top" attribute
3168 // struct Foo {
3169 //     #[bar] <---- not "top" attribute
3170 //     bar: usize,
3171 // }
3172 fn render_attributes(w: &mut Buffer, it: &clean::Item, top: bool) {
3173     let mut attrs = String::new();
3174
3175     for attr in &it.attrs.other_attrs {
3176         if !ATTRIBUTE_WHITELIST.contains(&attr.name_or_empty()) {
3177             continue;
3178         }
3179         if let Some(s) = render_attribute(&attr.meta().unwrap()) {
3180             attrs.push_str(&format!("#[{}]\n", s));
3181         }
3182     }
3183     if attrs.len() > 0 {
3184         write!(
3185             w,
3186             "<span class=\"docblock attributes{}\">{}</span>",
3187             if top { " top-attr" } else { "" },
3188             &attrs
3189         );
3190     }
3191 }
3192
3193 fn render_struct(
3194     w: &mut Buffer,
3195     it: &clean::Item,
3196     g: Option<&clean::Generics>,
3197     ty: doctree::StructType,
3198     fields: &[clean::Item],
3199     tab: &str,
3200     structhead: bool,
3201 ) {
3202     write!(
3203         w,
3204         "{}{}{}",
3205         it.visibility.print_with_space(),
3206         if structhead { "struct " } else { "" },
3207         it.name.as_ref().unwrap()
3208     );
3209     if let Some(g) = g {
3210         write!(w, "{}", g.print())
3211     }
3212     match ty {
3213         doctree::Plain => {
3214             if let Some(g) = g {
3215                 write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: true })
3216             }
3217             let mut has_visible_fields = false;
3218             write!(w, " {{");
3219             for field in fields {
3220                 if let clean::StructFieldItem(ref ty) = field.inner {
3221                     write!(
3222                         w,
3223                         "\n{}    {}{}: {},",
3224                         tab,
3225                         field.visibility.print_with_space(),
3226                         field.name.as_ref().unwrap(),
3227                         ty.print()
3228                     );
3229                     has_visible_fields = true;
3230                 }
3231             }
3232
3233             if has_visible_fields {
3234                 if it.has_stripped_fields().unwrap() {
3235                     write!(w, "\n{}    // some fields omitted", tab);
3236                 }
3237                 write!(w, "\n{}", tab);
3238             } else if it.has_stripped_fields().unwrap() {
3239                 // If there are no visible fields we can just display
3240                 // `{ /* fields omitted */ }` to save space.
3241                 write!(w, " /* fields omitted */ ");
3242             }
3243             write!(w, "}}");
3244         }
3245         doctree::Tuple => {
3246             write!(w, "(");
3247             for (i, field) in fields.iter().enumerate() {
3248                 if i > 0 {
3249                     write!(w, ", ");
3250                 }
3251                 match field.inner {
3252                     clean::StrippedItem(box clean::StructFieldItem(..)) => write!(w, "_"),
3253                     clean::StructFieldItem(ref ty) => {
3254                         write!(w, "{}{}", field.visibility.print_with_space(), ty.print())
3255                     }
3256                     _ => unreachable!(),
3257                 }
3258             }
3259             write!(w, ")");
3260             if let Some(g) = g {
3261                 write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: false })
3262             }
3263             write!(w, ";");
3264         }
3265         doctree::Unit => {
3266             // Needed for PhantomData.
3267             if let Some(g) = g {
3268                 write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: false })
3269             }
3270             write!(w, ";");
3271         }
3272     }
3273 }
3274
3275 fn render_union(
3276     w: &mut Buffer,
3277     it: &clean::Item,
3278     g: Option<&clean::Generics>,
3279     fields: &[clean::Item],
3280     tab: &str,
3281     structhead: bool,
3282 ) {
3283     write!(
3284         w,
3285         "{}{}{}",
3286         it.visibility.print_with_space(),
3287         if structhead { "union " } else { "" },
3288         it.name.as_ref().unwrap()
3289     );
3290     if let Some(g) = g {
3291         write!(w, "{}", g.print());
3292         write!(w, "{}", WhereClause { gens: g, indent: 0, end_newline: true });
3293     }
3294
3295     write!(w, " {{\n{}", tab);
3296     for field in fields {
3297         if let clean::StructFieldItem(ref ty) = field.inner {
3298             write!(
3299                 w,
3300                 "    {}{}: {},\n{}",
3301                 field.visibility.print_with_space(),
3302                 field.name.as_ref().unwrap(),
3303                 ty.print(),
3304                 tab
3305             );
3306         }
3307     }
3308
3309     if it.has_stripped_fields().unwrap() {
3310         write!(w, "    // some fields omitted\n{}", tab);
3311     }
3312     write!(w, "}}");
3313 }
3314
3315 #[derive(Copy, Clone)]
3316 enum AssocItemLink<'a> {
3317     Anchor(Option<&'a str>),
3318     GotoSource(DefId, &'a FxHashSet<String>),
3319 }
3320
3321 impl<'a> AssocItemLink<'a> {
3322     fn anchor(&self, id: &'a String) -> Self {
3323         match *self {
3324             AssocItemLink::Anchor(_) => AssocItemLink::Anchor(Some(&id)),
3325             ref other => *other,
3326         }
3327     }
3328 }
3329
3330 enum AssocItemRender<'a> {
3331     All,
3332     DerefFor { trait_: &'a clean::Type, type_: &'a clean::Type, deref_mut_: bool },
3333 }
3334
3335 #[derive(Copy, Clone, PartialEq)]
3336 enum RenderMode {
3337     Normal,
3338     ForDeref { mut_: bool },
3339 }
3340
3341 fn render_assoc_items(
3342     w: &mut Buffer,
3343     cx: &Context,
3344     containing_item: &clean::Item,
3345     it: DefId,
3346     what: AssocItemRender<'_>,
3347 ) {
3348     let c = &cx.cache;
3349     let v = match c.impls.get(&it) {
3350         Some(v) => v,
3351         None => return,
3352     };
3353     let (non_trait, traits): (Vec<_>, _) = v.iter().partition(|i| i.inner_impl().trait_.is_none());
3354     if !non_trait.is_empty() {
3355         let render_mode = match what {
3356             AssocItemRender::All => {
3357                 write!(
3358                     w,
3359                     "\
3360                     <h2 id='methods' class='small-section-header'>\
3361                       Methods<a href='#methods' class='anchor'></a>\
3362                     </h2>\
3363                 "
3364                 );
3365                 RenderMode::Normal
3366             }
3367             AssocItemRender::DerefFor { trait_, type_, deref_mut_ } => {
3368                 write!(
3369                     w,
3370                     "\
3371                     <h2 id='deref-methods' class='small-section-header'>\
3372                       Methods from {}&lt;Target = {}&gt;\
3373                       <a href='#deref-methods' class='anchor'></a>\
3374                     </h2>\
3375                 ",
3376                     trait_.print(),
3377                     type_.print()
3378                 );
3379                 RenderMode::ForDeref { mut_: deref_mut_ }
3380             }
3381         };
3382         for i in &non_trait {
3383             render_impl(
3384                 w,
3385                 cx,
3386                 i,
3387                 AssocItemLink::Anchor(None),
3388                 render_mode,
3389                 containing_item.stable_since(),
3390                 true,
3391                 None,
3392                 false,
3393                 true,
3394                 &[],
3395             );
3396         }
3397     }
3398     if let AssocItemRender::DerefFor { .. } = what {
3399         return;
3400     }
3401     if !traits.is_empty() {
3402         let deref_impl =
3403             traits.iter().find(|t| t.inner_impl().trait_.def_id() == c.deref_trait_did);
3404         if let Some(impl_) = deref_impl {
3405             let has_deref_mut = traits
3406                 .iter()
3407                 .find(|t| t.inner_impl().trait_.def_id() == c.deref_mut_trait_did)
3408                 .is_some();
3409             render_deref_methods(w, cx, impl_, containing_item, has_deref_mut);
3410         }
3411
3412         let (synthetic, concrete): (Vec<&&Impl>, Vec<&&Impl>) =
3413             traits.iter().partition(|t| t.inner_impl().synthetic);
3414         let (blanket_impl, concrete): (Vec<&&Impl>, _) =
3415             concrete.into_iter().partition(|t| t.inner_impl().blanket_impl.is_some());
3416
3417         let mut impls = Buffer::empty_from(&w);
3418         render_impls(cx, &mut impls, &concrete, containing_item);
3419         let impls = impls.into_inner();
3420         if !impls.is_empty() {
3421             write!(
3422                 w,
3423                 "\
3424                 <h2 id='implementations' class='small-section-header'>\
3425                   Trait Implementations<a href='#implementations' class='anchor'></a>\
3426                 </h2>\
3427                 <div id='implementations-list'>{}</div>",
3428                 impls
3429             );
3430         }
3431
3432         if !synthetic.is_empty() {
3433             write!(
3434                 w,
3435                 "\
3436                 <h2 id='synthetic-implementations' class='small-section-header'>\
3437                   Auto Trait Implementations\
3438                   <a href='#synthetic-implementations' class='anchor'></a>\
3439                 </h2>\
3440                 <div id='synthetic-implementations-list'>\
3441             "
3442             );
3443             render_impls(cx, w, &synthetic, containing_item);
3444             write!(w, "</div>");
3445         }
3446
3447         if !blanket_impl.is_empty() {
3448             write!(
3449                 w,
3450                 "\
3451                 <h2 id='blanket-implementations' class='small-section-header'>\
3452                   Blanket Implementations\
3453                   <a href='#blanket-implementations' class='anchor'></a>\
3454                 </h2>\
3455                 <div id='blanket-implementations-list'>\
3456             "
3457             );
3458             render_impls(cx, w, &blanket_impl, containing_item);
3459             write!(w, "</div>");
3460         }
3461     }
3462 }
3463
3464 fn render_deref_methods(
3465     w: &mut Buffer,
3466     cx: &Context,
3467     impl_: &Impl,
3468     container_item: &clean::Item,
3469     deref_mut: bool,
3470 ) {
3471     let deref_type = impl_.inner_impl().trait_.as_ref().unwrap();
3472     let (target, real_target) = impl_
3473         .inner_impl()
3474         .items
3475         .iter()
3476         .filter_map(|item| match item.inner {
3477             clean::TypedefItem(ref t, true) => Some(match *t {
3478                 clean::Typedef { item_type: Some(ref type_), .. } => (type_, &t.type_),
3479                 _ => (&t.type_, &t.type_),
3480             }),
3481             _ => None,
3482         })
3483         .next()
3484         .expect("Expected associated type binding");
3485     let what =
3486         AssocItemRender::DerefFor { trait_: deref_type, type_: real_target, deref_mut_: deref_mut };
3487     if let Some(did) = target.def_id() {
3488         render_assoc_items(w, cx, container_item, did, what);
3489     } else {
3490         if let Some(prim) = target.primitive_type() {
3491             if let Some(&did) = cx.cache.primitive_locations.get(&prim) {
3492                 render_assoc_items(w, cx, container_item, did, what);
3493             }
3494         }
3495     }
3496 }
3497
3498 fn should_render_item(item: &clean::Item, deref_mut_: bool) -> bool {
3499     let self_type_opt = match item.inner {
3500         clean::MethodItem(ref method) => method.decl.self_type(),
3501         clean::TyMethodItem(ref method) => method.decl.self_type(),
3502         _ => None,
3503     };
3504
3505     if let Some(self_ty) = self_type_opt {
3506         let (by_mut_ref, by_box, by_value) = match self_ty {
3507             SelfTy::SelfBorrowed(_, mutability)
3508             | SelfTy::SelfExplicit(clean::BorrowedRef { mutability, .. }) => {
3509                 (mutability == Mutability::Mut, false, false)
3510             }
3511             SelfTy::SelfExplicit(clean::ResolvedPath { did, .. }) => {
3512                 (false, Some(did) == cache().owned_box_did, false)
3513             }
3514             SelfTy::SelfValue => (false, false, true),
3515             _ => (false, false, false),
3516         };
3517
3518         (deref_mut_ || !by_mut_ref) && !by_box && !by_value
3519     } else {
3520         false
3521     }
3522 }
3523
3524 fn render_spotlight_traits(item: &clean::Item) -> String {
3525     match item.inner {
3526         clean::FunctionItem(clean::Function { ref decl, .. })
3527         | clean::TyMethodItem(clean::TyMethod { ref decl, .. })
3528         | clean::MethodItem(clean::Method { ref decl, .. })
3529         | clean::ForeignFunctionItem(clean::Function { ref decl, .. }) => spotlight_decl(decl),
3530         _ => String::new(),
3531     }
3532 }
3533
3534 fn spotlight_decl(decl: &clean::FnDecl) -> String {
3535     let mut out = Buffer::html();
3536     let mut trait_ = String::new();
3537
3538     if let Some(did) = decl.output.def_id() {
3539         let c = cache();
3540         if let Some(impls) = c.impls.get(&did) {
3541             for i in impls {
3542                 let impl_ = i.inner_impl();
3543                 if impl_.trait_.def_id().map_or(false, |d| c.traits[&d].is_spotlight) {
3544                     if out.is_empty() {
3545                         out.push_str(&format!(
3546                             "<h3 class=\"important\">Important traits for {}</h3>\
3547                                       <code class=\"content\">",
3548                             impl_.for_.print()
3549                         ));
3550                         trait_.push_str(&impl_.for_.print().to_string());
3551                     }
3552
3553                     //use the "where" class here to make it small
3554                     out.push_str(&format!(
3555                         "<span class=\"where fmt-newline\">{}</span>",
3556                         impl_.print()
3557                     ));
3558                     let t_did = impl_.trait_.def_id().unwrap();
3559                     for it in &impl_.items {
3560                         if let clean::TypedefItem(ref tydef, _) = it.inner {
3561                             out.push_str("<span class=\"where fmt-newline\">    ");
3562                             assoc_type(
3563                                 &mut out,
3564                                 it,
3565                                 &[],
3566                                 Some(&tydef.type_),
3567                                 AssocItemLink::GotoSource(t_did, &FxHashSet::default()),
3568                                 "",
3569                             );
3570                             out.push_str(";</span>");
3571                         }
3572                     }
3573                 }
3574             }
3575         }
3576     }
3577
3578     if !out.is_empty() {
3579         out.insert_str(
3580             0,
3581             &format!(
3582                 "<div class=\"important-traits\"><div class='tooltip'>ⓘ\
3583                                     <span class='tooltiptext'>Important traits for {}</span></div>\
3584                                     <div class=\"content hidden\">",
3585                 trait_
3586             ),
3587         );
3588         out.push_str("</code></div></div>");
3589     }
3590
3591     out.into_inner()
3592 }
3593
3594 fn render_impl(
3595     w: &mut Buffer,
3596     cx: &Context,
3597     i: &Impl,
3598     link: AssocItemLink<'_>,
3599     render_mode: RenderMode,
3600     outer_version: Option<&str>,
3601     show_def_docs: bool,
3602     use_absolute: Option<bool>,
3603     is_on_foreign_type: bool,
3604     show_default_items: bool,
3605     // This argument is used to reference same type with different pathes to avoid duplication
3606     // in documentation pages for trait with automatic implementations like "Send" and "Sync".
3607     aliases: &[String],
3608 ) {
3609     if render_mode == RenderMode::Normal {
3610         let id = cx.derive_id(match i.inner_impl().trait_ {
3611             Some(ref t) => {
3612                 if is_on_foreign_type {
3613                     get_id_for_impl_on_foreign_type(&i.inner_impl().for_, t)
3614                 } else {
3615                     format!("impl-{}", small_url_encode(&format!("{:#}", t.print())))
3616                 }
3617             }
3618             None => "impl".to_string(),
3619         });
3620         let aliases = if aliases.is_empty() {
3621             String::new()
3622         } else {
3623             format!(" aliases=\"{}\"", aliases.join(","))
3624         };
3625         if let Some(use_absolute) = use_absolute {
3626             write!(w, "<h3 id='{}' class='impl'{}><code class='in-band'>", id, aliases);
3627             fmt_impl_for_trait_page(&i.inner_impl(), w, use_absolute);
3628             if show_def_docs {
3629                 for it in &i.inner_impl().items {
3630                     if let clean::TypedefItem(ref tydef, _) = it.inner {
3631                         write!(w, "<span class=\"where fmt-newline\">  ");
3632                         assoc_type(
3633                             w,
3634                             it,
3635                             &vec![],
3636                             Some(&tydef.type_),
3637                             AssocItemLink::Anchor(None),
3638                             "",
3639                         );
3640                         write!(w, ";</span>");
3641                     }
3642                 }
3643             }
3644             write!(w, "</code>");
3645         } else {
3646             write!(
3647                 w,
3648                 "<h3 id='{}' class='impl'{}><code class='in-band'>{}</code>",
3649                 id,
3650                 aliases,
3651                 i.inner_impl().print()
3652             );
3653         }
3654         write!(w, "<a href='#{}' class='anchor'></a>", id);
3655         let since = i.impl_item.stability.as_ref().map(|s| &s.since[..]);
3656         render_stability_since_raw(w, since, outer_version);
3657         if let Some(l) = cx.src_href(&i.impl_item) {
3658             write!(w, "<a class='srclink' href='{}' title='{}'>[src]</a>", l, "goto source code");
3659         }
3660         write!(w, "</h3>");
3661         if let Some(ref dox) = cx.shared.maybe_collapsed_doc_value(&i.impl_item) {
3662             let mut ids = cx.id_map.borrow_mut();
3663             write!(
3664                 w,
3665                 "<div class='docblock'>{}</div>",
3666                 Markdown(
3667                     &*dox,
3668                     &i.impl_item.links(),
3669                     &mut ids,
3670                     cx.shared.codes,
3671                     cx.shared.edition,
3672                     &cx.shared.playground
3673                 )
3674                 .to_string()
3675             );
3676         }
3677     }
3678
3679     fn doc_impl_item(
3680         w: &mut Buffer,
3681         cx: &Context,
3682         item: &clean::Item,
3683         link: AssocItemLink<'_>,
3684         render_mode: RenderMode,
3685         is_default_item: bool,
3686         outer_version: Option<&str>,
3687         trait_: Option<&clean::Trait>,
3688         show_def_docs: bool,
3689     ) {
3690         let item_type = item.type_();
3691         let name = item.name.as_ref().unwrap();
3692
3693         let render_method_item = match render_mode {
3694             RenderMode::Normal => true,
3695             RenderMode::ForDeref { mut_: deref_mut_ } => should_render_item(&item, deref_mut_),
3696         };
3697
3698         let (is_hidden, extra_class) =
3699             if (trait_.is_none() || item.doc_value().is_some() || item.inner.is_associated())
3700                 && !is_default_item
3701             {
3702                 (false, "")
3703             } else {
3704                 (true, " hidden")
3705             };
3706         match item.inner {
3707             clean::MethodItem(clean::Method { ref decl, .. })
3708             | clean::TyMethodItem(clean::TyMethod { ref decl, .. }) => {
3709                 // Only render when the method is not static or we allow static methods
3710                 if render_method_item {
3711                     let id = cx.derive_id(format!("{}.{}", item_type, name));
3712                     let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3713                     write!(w, "<h4 id='{}' class=\"{}{}\">", id, item_type, extra_class);
3714                     write!(w, "{}", spotlight_decl(decl));
3715                     write!(w, "<code id='{}'>", ns_id);
3716                     render_assoc_item(w, item, link.anchor(&id), ItemType::Impl);
3717                     write!(w, "</code>");
3718                     render_stability_since_raw(w, item.stable_since(), outer_version);
3719                     if let Some(l) = cx.src_href(item) {
3720                         write!(
3721                             w,
3722                             "<a class='srclink' href='{}' title='{}'>[src]</a>",
3723                             l, "goto source code"
3724                         );
3725                     }
3726                     write!(w, "</h4>");
3727                 }
3728             }
3729             clean::TypedefItem(ref tydef, _) => {
3730                 let id = cx.derive_id(format!("{}.{}", ItemType::AssocType, name));
3731                 let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3732                 write!(w, "<h4 id='{}' class=\"{}{}\">", id, item_type, extra_class);
3733                 write!(w, "<code id='{}'>", ns_id);
3734                 assoc_type(w, item, &Vec::new(), Some(&tydef.type_), link.anchor(&id), "");
3735                 write!(w, "</code></h4>");
3736             }
3737             clean::AssocConstItem(ref ty, ref default) => {
3738                 let id = cx.derive_id(format!("{}.{}", item_type, name));
3739                 let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3740                 write!(w, "<h4 id='{}' class=\"{}{}\">", id, item_type, extra_class);
3741                 write!(w, "<code id='{}'>", ns_id);
3742                 assoc_const(w, item, ty, default.as_ref(), link.anchor(&id), "");
3743                 write!(w, "</code>");
3744                 render_stability_since_raw(w, item.stable_since(), outer_version);
3745                 if let Some(l) = cx.src_href(item) {
3746                     write!(
3747                         w,
3748                         "<a class='srclink' href='{}' title='{}'>[src]</a>",
3749                         l, "goto source code"
3750                     );
3751                 }
3752                 write!(w, "</h4>");
3753             }
3754             clean::AssocTypeItem(ref bounds, ref default) => {
3755                 let id = cx.derive_id(format!("{}.{}", item_type, name));
3756                 let ns_id = cx.derive_id(format!("{}.{}", name, item_type.name_space()));
3757                 write!(w, "<h4 id='{}' class=\"{}{}\">", id, item_type, extra_class);
3758                 write!(w, "<code id='{}'>", ns_id);
3759                 assoc_type(w, item, bounds, default.as_ref(), link.anchor(&id), "");
3760                 write!(w, "</code></h4>");
3761             }
3762             clean::StrippedItem(..) => return,
3763             _ => panic!("can't make docs for trait item with name {:?}", item.name),
3764         }
3765
3766         if render_method_item {
3767             if !is_default_item {
3768                 if let Some(t) = trait_ {
3769                     // The trait item may have been stripped so we might not
3770                     // find any documentation or stability for it.
3771                     if let Some(it) = t.items.iter().find(|i| i.name == item.name) {
3772                         // We need the stability of the item from the trait
3773                         // because impls can't have a stability.
3774                         document_stability(w, cx, it, is_hidden);
3775                         if item.doc_value().is_some() {
3776                             document_full(w, item, cx, "", is_hidden);
3777                         } else if show_def_docs {
3778                             // In case the item isn't documented,
3779                             // provide short documentation from the trait.
3780                             document_short(w, cx, it, link, "", is_hidden);
3781                         }
3782                     }
3783                 } else {
3784                     document_stability(w, cx, item, is_hidden);
3785                     if show_def_docs {
3786                         document_full(w, item, cx, "", is_hidden);
3787                     }
3788                 }
3789             } else {
3790                 document_stability(w, cx, item, is_hidden);
3791                 if show_def_docs {
3792                     document_short(w, cx, item, link, "", is_hidden);
3793                 }
3794             }
3795         }
3796     }
3797
3798     let traits = &cx.cache.traits;
3799     let trait_ = i.trait_did().map(|did| &traits[&did]);
3800
3801     write!(w, "<div class='impl-items'>");
3802     for trait_item in &i.inner_impl().items {
3803         doc_impl_item(
3804             w,
3805             cx,
3806             trait_item,
3807             link,
3808             render_mode,
3809             false,
3810             outer_version,
3811             trait_,
3812             show_def_docs,
3813         );
3814     }
3815
3816     fn render_default_items(
3817         w: &mut Buffer,
3818         cx: &Context,
3819         t: &clean::Trait,
3820         i: &clean::Impl,
3821         render_mode: RenderMode,
3822         outer_version: Option<&str>,
3823         show_def_docs: bool,
3824     ) {
3825         for trait_item in &t.items {
3826             let n = trait_item.name.clone();
3827             if i.items.iter().find(|m| m.name == n).is_some() {
3828                 continue;
3829             }
3830             let did = i.trait_.as_ref().unwrap().def_id().unwrap();
3831             let assoc_link = AssocItemLink::GotoSource(did, &i.provided_trait_methods);
3832
3833             doc_impl_item(
3834                 w,
3835                 cx,
3836                 trait_item,
3837                 assoc_link,
3838                 render_mode,
3839                 true,
3840                 outer_version,
3841                 None,
3842                 show_def_docs,
3843             );
3844         }
3845     }
3846
3847     // If we've implemented a trait, then also emit documentation for all
3848     // default items which weren't overridden in the implementation block.
3849     // We don't emit documentation for default items if they appear in the
3850     // Implementations on Foreign Types or Implementors sections.
3851     if show_default_items {
3852         if let Some(t) = trait_ {
3853             render_default_items(
3854                 w,
3855                 cx,
3856                 t,
3857                 &i.inner_impl(),
3858                 render_mode,
3859                 outer_version,
3860                 show_def_docs,
3861             );
3862         }
3863     }
3864     write!(w, "</div>");
3865 }
3866
3867 fn item_opaque_ty(w: &mut Buffer, cx: &Context, it: &clean::Item, t: &clean::OpaqueTy) {
3868     write!(w, "<pre class='rust opaque'>");
3869     render_attributes(w, it, false);
3870     write!(
3871         w,
3872         "type {}{}{where_clause} = impl {bounds};</pre>",
3873         it.name.as_ref().unwrap(),
3874         t.generics.print(),
3875         where_clause = WhereClause { gens: &t.generics, indent: 0, end_newline: true },
3876         bounds = bounds(&t.bounds, false)
3877     );
3878
3879     document(w, cx, it);
3880
3881     // Render any items associated directly to this alias, as otherwise they
3882     // won't be visible anywhere in the docs. It would be nice to also show
3883     // associated items from the aliased type (see discussion in #32077), but
3884     // we need #14072 to make sense of the generics.
3885     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3886 }
3887
3888 fn item_trait_alias(w: &mut Buffer, cx: &Context, it: &clean::Item, t: &clean::TraitAlias) {
3889     write!(w, "<pre class='rust trait-alias'>");
3890     render_attributes(w, it, false);
3891     write!(
3892         w,
3893         "trait {}{}{} = {};</pre>",
3894         it.name.as_ref().unwrap(),
3895         t.generics.print(),
3896         WhereClause { gens: &t.generics, indent: 0, end_newline: true },
3897         bounds(&t.bounds, true)
3898     );
3899
3900     document(w, cx, it);
3901
3902     // Render any items associated directly to this alias, as otherwise they
3903     // won't be visible anywhere in the docs. It would be nice to also show
3904     // associated items from the aliased type (see discussion in #32077), but
3905     // we need #14072 to make sense of the generics.
3906     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3907 }
3908
3909 fn item_typedef(w: &mut Buffer, cx: &Context, it: &clean::Item, t: &clean::Typedef) {
3910     write!(w, "<pre class='rust typedef'>");
3911     render_attributes(w, it, false);
3912     write!(
3913         w,
3914         "type {}{}{where_clause} = {type_};</pre>",
3915         it.name.as_ref().unwrap(),
3916         t.generics.print(),
3917         where_clause = WhereClause { gens: &t.generics, indent: 0, end_newline: true },
3918         type_ = t.type_.print()
3919     );
3920
3921     document(w, cx, it);
3922
3923     // Render any items associated directly to this alias, as otherwise they
3924     // won't be visible anywhere in the docs. It would be nice to also show
3925     // associated items from the aliased type (see discussion in #32077), but
3926     // we need #14072 to make sense of the generics.
3927     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3928 }
3929
3930 fn item_foreign_type(w: &mut Buffer, cx: &Context, it: &clean::Item) {
3931     writeln!(w, "<pre class='rust foreigntype'>extern {{");
3932     render_attributes(w, it, false);
3933     write!(
3934         w,
3935         "    {}type {};\n}}</pre>",
3936         it.visibility.print_with_space(),
3937         it.name.as_ref().unwrap(),
3938     );
3939
3940     document(w, cx, it);
3941
3942     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
3943 }
3944
3945 fn print_sidebar(cx: &Context, it: &clean::Item, buffer: &mut Buffer) {
3946     let parentlen = cx.current.len() - if it.is_mod() { 1 } else { 0 };
3947
3948     if it.is_struct()
3949         || it.is_trait()
3950         || it.is_primitive()
3951         || it.is_union()
3952         || it.is_enum()
3953         || it.is_mod()
3954         || it.is_typedef()
3955     {
3956         write!(
3957             buffer,
3958             "<p class='location'>{}{}</p>",
3959             match it.inner {
3960                 clean::StructItem(..) => "Struct ",
3961                 clean::TraitItem(..) => "Trait ",
3962                 clean::PrimitiveItem(..) => "Primitive Type ",
3963                 clean::UnionItem(..) => "Union ",
3964                 clean::EnumItem(..) => "Enum ",
3965                 clean::TypedefItem(..) => "Type Definition ",
3966                 clean::ForeignTypeItem => "Foreign Type ",
3967                 clean::ModuleItem(..) =>
3968                     if it.is_crate() {
3969                         "Crate "
3970                     } else {
3971                         "Module "
3972                     },
3973                 _ => "",
3974             },
3975             it.name.as_ref().unwrap()
3976         );
3977     }
3978
3979     if it.is_crate() {
3980         if let Some(ref version) = cx.cache.crate_version {
3981             write!(
3982                 buffer,
3983                 "<div class='block version'>\
3984                     <p>Version {}</p>\
3985                     </div>",
3986                 version
3987             );
3988         }
3989     }
3990
3991     write!(buffer, "<div class=\"sidebar-elems\">");
3992     if it.is_crate() {
3993         write!(
3994             buffer,
3995             "<a id='all-types' href='all.html'><p>See all {}'s items</p></a>",
3996             it.name.as_ref().expect("crates always have a name")
3997         );
3998     }
3999     match it.inner {
4000         clean::StructItem(ref s) => sidebar_struct(buffer, it, s),
4001         clean::TraitItem(ref t) => sidebar_trait(buffer, it, t),
4002         clean::PrimitiveItem(_) => sidebar_primitive(buffer, it),
4003         clean::UnionItem(ref u) => sidebar_union(buffer, it, u),
4004         clean::EnumItem(ref e) => sidebar_enum(buffer, it, e),
4005         clean::TypedefItem(_, _) => sidebar_typedef(buffer, it),
4006         clean::ModuleItem(ref m) => sidebar_module(buffer, &m.items),
4007         clean::ForeignTypeItem => sidebar_foreign_type(buffer, it),
4008         _ => (),
4009     }
4010
4011     // The sidebar is designed to display sibling functions, modules and
4012     // other miscellaneous information. since there are lots of sibling
4013     // items (and that causes quadratic growth in large modules),
4014     // we refactor common parts into a shared JavaScript file per module.
4015     // still, we don't move everything into JS because we want to preserve
4016     // as much HTML as possible in order to allow non-JS-enabled browsers
4017     // to navigate the documentation (though slightly inefficiently).
4018
4019     write!(buffer, "<p class='location'>");
4020     for (i, name) in cx.current.iter().take(parentlen).enumerate() {
4021         if i > 0 {
4022             write!(buffer, "::<wbr>");
4023         }
4024         write!(
4025             buffer,
4026             "<a href='{}index.html'>{}</a>",
4027             &cx.root_path()[..(cx.current.len() - i - 1) * 3],
4028             *name
4029         );
4030     }
4031     write!(buffer, "</p>");
4032
4033     // Sidebar refers to the enclosing module, not this module.
4034     let relpath = if it.is_mod() { "../" } else { "" };
4035     write!(
4036         buffer,
4037         "<script>window.sidebarCurrent = {{\
4038                 name: '{name}', \
4039                 ty: '{ty}', \
4040                 relpath: '{path}'\
4041             }};</script>",
4042         name = it.name.as_ref().map(|x| &x[..]).unwrap_or(""),
4043         ty = it.type_(),
4044         path = relpath
4045     );
4046     if parentlen == 0 {
4047         // There is no sidebar-items.js beyond the crate root path
4048         // FIXME maybe dynamic crate loading can be merged here
4049     } else {
4050         write!(buffer, "<script defer src=\"{path}sidebar-items.js\"></script>", path = relpath);
4051     }
4052     // Closes sidebar-elems div.
4053     write!(buffer, "</div>");
4054 }
4055
4056 fn get_next_url(used_links: &mut FxHashSet<String>, url: String) -> String {
4057     if used_links.insert(url.clone()) {
4058         return url;
4059     }
4060     let mut add = 1;
4061     while used_links.insert(format!("{}-{}", url, add)) == false {
4062         add += 1;
4063     }
4064     format!("{}-{}", url, add)
4065 }
4066
4067 fn get_methods(
4068     i: &clean::Impl,
4069     for_deref: bool,
4070     used_links: &mut FxHashSet<String>,
4071     deref_mut: bool,
4072 ) -> Vec<String> {
4073     i.items
4074         .iter()
4075         .filter_map(|item| match item.name {
4076             Some(ref name) if !name.is_empty() && item.is_method() => {
4077                 if !for_deref || should_render_item(item, deref_mut) {
4078                     Some(format!(
4079                         "<a href=\"#{}\">{}</a>",
4080                         get_next_url(used_links, format!("method.{}", name)),
4081                         name
4082                     ))
4083                 } else {
4084                     None
4085                 }
4086             }
4087             _ => None,
4088         })
4089         .collect::<Vec<_>>()
4090 }
4091
4092 // The point is to url encode any potential character from a type with genericity.
4093 fn small_url_encode(s: &str) -> String {
4094     s.replace("<", "%3C")
4095         .replace(">", "%3E")
4096         .replace(" ", "%20")
4097         .replace("?", "%3F")
4098         .replace("'", "%27")
4099         .replace("&", "%26")
4100         .replace(",", "%2C")
4101         .replace(":", "%3A")
4102         .replace(";", "%3B")
4103         .replace("[", "%5B")
4104         .replace("]", "%5D")
4105         .replace("\"", "%22")
4106 }
4107
4108 fn sidebar_assoc_items(it: &clean::Item) -> String {
4109     let mut out = String::new();
4110     let c = cache();
4111     if let Some(v) = c.impls.get(&it.def_id) {
4112         let mut used_links = FxHashSet::default();
4113
4114         {
4115             let used_links_bor = &mut used_links;
4116             let mut ret = v
4117                 .iter()
4118                 .filter(|i| i.inner_impl().trait_.is_none())
4119                 .flat_map(move |i| get_methods(i.inner_impl(), false, used_links_bor, false))
4120                 .collect::<Vec<_>>();
4121             // We want links' order to be reproducible so we don't use unstable sort.
4122             ret.sort();
4123             if !ret.is_empty() {
4124                 out.push_str(&format!(
4125                     "<a class=\"sidebar-title\" href=\"#methods\">Methods\
4126                                        </a><div class=\"sidebar-links\">{}</div>",
4127                     ret.join("")
4128                 ));
4129             }
4130         }
4131
4132         if v.iter().any(|i| i.inner_impl().trait_.is_some()) {
4133             if let Some(impl_) = v
4134                 .iter()
4135                 .filter(|i| i.inner_impl().trait_.is_some())
4136                 .find(|i| i.inner_impl().trait_.def_id() == c.deref_trait_did)
4137             {
4138                 if let Some((target, real_target)) = impl_
4139                     .inner_impl()
4140                     .items
4141                     .iter()
4142                     .filter_map(|item| match item.inner {
4143                         clean::TypedefItem(ref t, true) => Some(match *t {
4144                             clean::Typedef { item_type: Some(ref type_), .. } => (type_, &t.type_),
4145                             _ => (&t.type_, &t.type_),
4146                         }),
4147                         _ => None,
4148                     })
4149                     .next()
4150                 {
4151                     let inner_impl = target
4152                         .def_id()
4153                         .or(target
4154                             .primitive_type()
4155                             .and_then(|prim| c.primitive_locations.get(&prim).cloned()))
4156                         .and_then(|did| c.impls.get(&did));
4157                     if let Some(impls) = inner_impl {
4158                         out.push_str("<a class=\"sidebar-title\" href=\"#deref-methods\">");
4159                         out.push_str(&format!(
4160                             "Methods from {}&lt;Target={}&gt;",
4161                             Escape(&format!(
4162                                 "{:#}",
4163                                 impl_.inner_impl().trait_.as_ref().unwrap().print()
4164                             )),
4165                             Escape(&format!("{:#}", real_target.print()))
4166                         ));
4167                         out.push_str("</a>");
4168                         let mut ret = impls
4169                             .iter()
4170                             .filter(|i| i.inner_impl().trait_.is_none())
4171                             .flat_map(|i| get_methods(i.inner_impl(), true, &mut used_links, true))
4172                             .collect::<Vec<_>>();
4173                         // We want links' order to be reproducible so we don't use unstable sort.
4174                         ret.sort();
4175                         if !ret.is_empty() {
4176                             out.push_str(&format!(
4177                                 "<div class=\"sidebar-links\">{}</div>",
4178                                 ret.join("")
4179                             ));
4180                         }
4181                     }
4182                 }
4183             }
4184             let format_impls = |impls: Vec<&Impl>| {
4185                 let mut links = FxHashSet::default();
4186
4187                 let mut ret = impls
4188                     .iter()
4189                     .filter_map(|i| {
4190                         let is_negative_impl = is_negative_impl(i.inner_impl());
4191                         if let Some(ref i) = i.inner_impl().trait_ {
4192                             let i_display = format!("{:#}", i.print());
4193                             let out = Escape(&i_display);
4194                             let encoded = small_url_encode(&format!("{:#}", i.print()));
4195                             let generated = format!(
4196                                 "<a href=\"#impl-{}\">{}{}</a>",
4197                                 encoded,
4198                                 if is_negative_impl { "!" } else { "" },
4199                                 out
4200                             );
4201                             if links.insert(generated.clone()) { Some(generated) } else { None }
4202                         } else {
4203                             None
4204                         }
4205                     })
4206                     .collect::<Vec<String>>();
4207                 ret.sort();
4208                 ret.join("")
4209             };
4210
4211             let (synthetic, concrete): (Vec<&Impl>, Vec<&Impl>) =
4212                 v.iter().partition::<Vec<_>, _>(|i| i.inner_impl().synthetic);
4213             let (blanket_impl, concrete): (Vec<&Impl>, Vec<&Impl>) = concrete
4214                 .into_iter()
4215                 .partition::<Vec<_>, _>(|i| i.inner_impl().blanket_impl.is_some());
4216
4217             let concrete_format = format_impls(concrete);
4218             let synthetic_format = format_impls(synthetic);
4219             let blanket_format = format_impls(blanket_impl);
4220
4221             if !concrete_format.is_empty() {
4222                 out.push_str(
4223                     "<a class=\"sidebar-title\" href=\"#implementations\">\
4224                               Trait Implementations</a>",
4225                 );
4226                 out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", concrete_format));
4227             }
4228
4229             if !synthetic_format.is_empty() {
4230                 out.push_str(
4231                     "<a class=\"sidebar-title\" href=\"#synthetic-implementations\">\
4232                               Auto Trait Implementations</a>",
4233                 );
4234                 out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", synthetic_format));
4235             }
4236
4237             if !blanket_format.is_empty() {
4238                 out.push_str(
4239                     "<a class=\"sidebar-title\" href=\"#blanket-implementations\">\
4240                               Blanket Implementations</a>",
4241                 );
4242                 out.push_str(&format!("<div class=\"sidebar-links\">{}</div>", blanket_format));
4243             }
4244         }
4245     }
4246
4247     out
4248 }
4249
4250 fn sidebar_struct(buf: &mut Buffer, it: &clean::Item, s: &clean::Struct) {
4251     let mut sidebar = String::new();
4252     let fields = get_struct_fields_name(&s.fields);
4253
4254     if !fields.is_empty() {
4255         if let doctree::Plain = s.struct_type {
4256             sidebar.push_str(&format!(
4257                 "<a class=\"sidebar-title\" href=\"#fields\">Fields</a>\
4258                                        <div class=\"sidebar-links\">{}</div>",
4259                 fields
4260             ));
4261         }
4262     }
4263
4264     sidebar.push_str(&sidebar_assoc_items(it));
4265
4266     if !sidebar.is_empty() {
4267         write!(buf, "<div class=\"block items\">{}</div>", sidebar);
4268     }
4269 }
4270
4271 fn get_id_for_impl_on_foreign_type(for_: &clean::Type, trait_: &clean::Type) -> String {
4272     small_url_encode(&format!("impl-{:#}-for-{:#}", trait_.print(), for_.print()))
4273 }
4274
4275 fn extract_for_impl_name(item: &clean::Item) -> Option<(String, String)> {
4276     match item.inner {
4277         clean::ItemEnum::ImplItem(ref i) => {
4278             if let Some(ref trait_) = i.trait_ {
4279                 Some((
4280                     format!("{:#}", i.for_.print()),
4281                     get_id_for_impl_on_foreign_type(&i.for_, trait_),
4282                 ))
4283             } else {
4284                 None
4285             }
4286         }
4287         _ => None,
4288     }
4289 }
4290
4291 fn is_negative_impl(i: &clean::Impl) -> bool {
4292     i.polarity == Some(clean::ImplPolarity::Negative)
4293 }
4294
4295 fn sidebar_trait(buf: &mut Buffer, it: &clean::Item, t: &clean::Trait) {
4296     let mut sidebar = String::new();
4297
4298     let types = t
4299         .items
4300         .iter()
4301         .filter_map(|m| match m.name {
4302             Some(ref name) if m.is_associated_type() => {
4303                 Some(format!("<a href=\"#associatedtype.{name}\">{name}</a>", name = name))
4304             }
4305             _ => None,
4306         })
4307         .collect::<String>();
4308     let consts = t
4309         .items
4310         .iter()
4311         .filter_map(|m| match m.name {
4312             Some(ref name) if m.is_associated_const() => {
4313                 Some(format!("<a href=\"#associatedconstant.{name}\">{name}</a>", name = name))
4314             }
4315             _ => None,
4316         })
4317         .collect::<String>();
4318     let mut required = t
4319         .items
4320         .iter()
4321         .filter_map(|m| match m.name {
4322             Some(ref name) if m.is_ty_method() => {
4323                 Some(format!("<a href=\"#tymethod.{name}\">{name}</a>", name = name))
4324             }
4325             _ => None,
4326         })
4327         .collect::<Vec<String>>();
4328     let mut provided = t
4329         .items
4330         .iter()
4331         .filter_map(|m| match m.name {
4332             Some(ref name) if m.is_method() => {
4333                 Some(format!("<a href=\"#method.{0}\">{0}</a>", name))
4334             }
4335             _ => None,
4336         })
4337         .collect::<Vec<String>>();
4338
4339     if !types.is_empty() {
4340         sidebar.push_str(&format!(
4341             "<a class=\"sidebar-title\" href=\"#associated-types\">\
4342                                    Associated Types</a><div class=\"sidebar-links\">{}</div>",
4343             types
4344         ));
4345     }
4346     if !consts.is_empty() {
4347         sidebar.push_str(&format!(
4348             "<a class=\"sidebar-title\" href=\"#associated-const\">\
4349                                    Associated Constants</a><div class=\"sidebar-links\">{}</div>",
4350             consts
4351         ));
4352     }
4353     if !required.is_empty() {
4354         required.sort();
4355         sidebar.push_str(&format!(
4356             "<a class=\"sidebar-title\" href=\"#required-methods\">\
4357                                    Required Methods</a><div class=\"sidebar-links\">{}</div>",
4358             required.join("")
4359         ));
4360     }
4361     if !provided.is_empty() {
4362         provided.sort();
4363         sidebar.push_str(&format!(
4364             "<a class=\"sidebar-title\" href=\"#provided-methods\">\
4365                                    Provided Methods</a><div class=\"sidebar-links\">{}</div>",
4366             provided.join("")
4367         ));
4368     }
4369
4370     let c = cache();
4371
4372     if let Some(implementors) = c.implementors.get(&it.def_id) {
4373         let mut res = implementors
4374             .iter()
4375             .filter(|i| i.inner_impl().for_.def_id().map_or(false, |d| !c.paths.contains_key(&d)))
4376             .filter_map(|i| match extract_for_impl_name(&i.impl_item) {
4377                 Some((ref name, ref id)) => {
4378                     Some(format!("<a href=\"#{}\">{}</a>", id, Escape(name)))
4379                 }
4380                 _ => None,
4381             })
4382             .collect::<Vec<String>>();
4383         if !res.is_empty() {
4384             res.sort();
4385             sidebar.push_str(&format!(
4386                 "<a class=\"sidebar-title\" href=\"#foreign-impls\">\
4387                                        Implementations on Foreign Types</a><div \
4388                                        class=\"sidebar-links\">{}</div>",
4389                 res.join("")
4390             ));
4391         }
4392     }
4393
4394     sidebar.push_str("<a class=\"sidebar-title\" href=\"#implementors\">Implementors</a>");
4395     if t.auto {
4396         sidebar.push_str(
4397             "<a class=\"sidebar-title\" \
4398                           href=\"#synthetic-implementors\">Auto Implementors</a>",
4399         );
4400     }
4401
4402     sidebar.push_str(&sidebar_assoc_items(it));
4403
4404     write!(buf, "<div class=\"block items\">{}</div>", sidebar)
4405 }
4406
4407 fn sidebar_primitive(buf: &mut Buffer, it: &clean::Item) {
4408     let sidebar = sidebar_assoc_items(it);
4409
4410     if !sidebar.is_empty() {
4411         write!(buf, "<div class=\"block items\">{}</div>", sidebar);
4412     }
4413 }
4414
4415 fn sidebar_typedef(buf: &mut Buffer, it: &clean::Item) {
4416     let sidebar = sidebar_assoc_items(it);
4417
4418     if !sidebar.is_empty() {
4419         write!(buf, "<div class=\"block items\">{}</div>", sidebar);
4420     }
4421 }
4422
4423 fn get_struct_fields_name(fields: &[clean::Item]) -> String {
4424     fields
4425         .iter()
4426         .filter(|f| if let clean::StructFieldItem(..) = f.inner { true } else { false })
4427         .filter_map(|f| match f.name {
4428             Some(ref name) => Some(format!(
4429                 "<a href=\"#structfield.{name}\">\
4430                                               {name}</a>",
4431                 name = name
4432             )),
4433             _ => None,
4434         })
4435         .collect()
4436 }
4437
4438 fn sidebar_union(buf: &mut Buffer, it: &clean::Item, u: &clean::Union) {
4439     let mut sidebar = String::new();
4440     let fields = get_struct_fields_name(&u.fields);
4441
4442     if !fields.is_empty() {
4443         sidebar.push_str(&format!(
4444             "<a class=\"sidebar-title\" href=\"#fields\">Fields</a>\
4445                                    <div class=\"sidebar-links\">{}</div>",
4446             fields
4447         ));
4448     }
4449
4450     sidebar.push_str(&sidebar_assoc_items(it));
4451
4452     if !sidebar.is_empty() {
4453         write!(buf, "<div class=\"block items\">{}</div>", sidebar);
4454     }
4455 }
4456
4457 fn sidebar_enum(buf: &mut Buffer, it: &clean::Item, e: &clean::Enum) {
4458     let mut sidebar = String::new();
4459
4460     let variants = e
4461         .variants
4462         .iter()
4463         .filter_map(|v| match v.name {
4464             Some(ref name) => Some(format!(
4465                 "<a href=\"#variant.{name}\">{name}\
4466                                                                  </a>",
4467                 name = name
4468             )),
4469             _ => None,
4470         })
4471         .collect::<String>();
4472     if !variants.is_empty() {
4473         sidebar.push_str(&format!(
4474             "<a class=\"sidebar-title\" href=\"#variants\">Variants</a>\
4475                                    <div class=\"sidebar-links\">{}</div>",
4476             variants
4477         ));
4478     }
4479
4480     sidebar.push_str(&sidebar_assoc_items(it));
4481
4482     if !sidebar.is_empty() {
4483         write!(buf, "<div class=\"block items\">{}</div>", sidebar);
4484     }
4485 }
4486
4487 fn item_ty_to_strs(ty: &ItemType) -> (&'static str, &'static str) {
4488     match *ty {
4489         ItemType::ExternCrate | ItemType::Import => ("reexports", "Re-exports"),
4490         ItemType::Module => ("modules", "Modules"),
4491         ItemType::Struct => ("structs", "Structs"),
4492         ItemType::Union => ("unions", "Unions"),
4493         ItemType::Enum => ("enums", "Enums"),
4494         ItemType::Function => ("functions", "Functions"),
4495         ItemType::Typedef => ("types", "Type Definitions"),
4496         ItemType::Static => ("statics", "Statics"),
4497         ItemType::Constant => ("constants", "Constants"),
4498         ItemType::Trait => ("traits", "Traits"),
4499         ItemType::Impl => ("impls", "Implementations"),
4500         ItemType::TyMethod => ("tymethods", "Type Methods"),
4501         ItemType::Method => ("methods", "Methods"),
4502         ItemType::StructField => ("fields", "Struct Fields"),
4503         ItemType::Variant => ("variants", "Variants"),
4504         ItemType::Macro => ("macros", "Macros"),
4505         ItemType::Primitive => ("primitives", "Primitive Types"),
4506         ItemType::AssocType => ("associated-types", "Associated Types"),
4507         ItemType::AssocConst => ("associated-consts", "Associated Constants"),
4508         ItemType::ForeignType => ("foreign-types", "Foreign Types"),
4509         ItemType::Keyword => ("keywords", "Keywords"),
4510         ItemType::OpaqueTy => ("opaque-types", "Opaque Types"),
4511         ItemType::ProcAttribute => ("attributes", "Attribute Macros"),
4512         ItemType::ProcDerive => ("derives", "Derive Macros"),
4513         ItemType::TraitAlias => ("trait-aliases", "Trait aliases"),
4514     }
4515 }
4516
4517 fn sidebar_module(buf: &mut Buffer, items: &[clean::Item]) {
4518     let mut sidebar = String::new();
4519
4520     if items.iter().any(|it| it.type_() == ItemType::ExternCrate || it.type_() == ItemType::Import)
4521     {
4522         sidebar.push_str(&format!(
4523             "<li><a href=\"#{id}\">{name}</a></li>",
4524             id = "reexports",
4525             name = "Re-exports"
4526         ));
4527     }
4528
4529     // ordering taken from item_module, reorder, where it prioritized elements in a certain order
4530     // to print its headings
4531     for &myty in &[
4532         ItemType::Primitive,
4533         ItemType::Module,
4534         ItemType::Macro,
4535         ItemType::Struct,
4536         ItemType::Enum,
4537         ItemType::Constant,
4538         ItemType::Static,
4539         ItemType::Trait,
4540         ItemType::Function,
4541         ItemType::Typedef,
4542         ItemType::Union,
4543         ItemType::Impl,
4544         ItemType::TyMethod,
4545         ItemType::Method,
4546         ItemType::StructField,
4547         ItemType::Variant,
4548         ItemType::AssocType,
4549         ItemType::AssocConst,
4550         ItemType::ForeignType,
4551         ItemType::Keyword,
4552     ] {
4553         if items.iter().any(|it| !it.is_stripped() && it.type_() == myty) {
4554             let (short, name) = item_ty_to_strs(&myty);
4555             sidebar.push_str(&format!(
4556                 "<li><a href=\"#{id}\">{name}</a></li>",
4557                 id = short,
4558                 name = name
4559             ));
4560         }
4561     }
4562
4563     if !sidebar.is_empty() {
4564         write!(buf, "<div class=\"block items\"><ul>{}</ul></div>", sidebar);
4565     }
4566 }
4567
4568 fn sidebar_foreign_type(buf: &mut Buffer, it: &clean::Item) {
4569     let sidebar = sidebar_assoc_items(it);
4570     if !sidebar.is_empty() {
4571         write!(buf, "<div class=\"block items\">{}</div>", sidebar);
4572     }
4573 }
4574
4575 fn item_macro(w: &mut Buffer, cx: &Context, it: &clean::Item, t: &clean::Macro) {
4576     wrap_into_docblock(w, |w| {
4577         w.write_str(&highlight::render_with_highlighting(&t.source, Some("macro"), None, None))
4578     });
4579     document(w, cx, it)
4580 }
4581
4582 fn item_proc_macro(w: &mut Buffer, cx: &Context, it: &clean::Item, m: &clean::ProcMacro) {
4583     let name = it.name.as_ref().expect("proc-macros always have names");
4584     match m.kind {
4585         MacroKind::Bang => {
4586             write!(w, "<pre class='rust macro'>");
4587             write!(w, "{}!() {{ /* proc-macro */ }}", name);
4588             write!(w, "</pre>");
4589         }
4590         MacroKind::Attr => {
4591             write!(w, "<pre class='rust attr'>");
4592             write!(w, "#[{}]", name);
4593             write!(w, "</pre>");
4594         }
4595         MacroKind::Derive => {
4596             write!(w, "<pre class='rust derive'>");
4597             write!(w, "#[derive({})]", name);
4598             if !m.helpers.is_empty() {
4599                 writeln!(w, "\n{{");
4600                 writeln!(w, "    // Attributes available to this derive:");
4601                 for attr in &m.helpers {
4602                     writeln!(w, "    #[{}]", attr);
4603                 }
4604                 write!(w, "}}");
4605             }
4606             write!(w, "</pre>");
4607         }
4608     }
4609     document(w, cx, it)
4610 }
4611
4612 fn item_primitive(w: &mut Buffer, cx: &Context, it: &clean::Item) {
4613     document(w, cx, it);
4614     render_assoc_items(w, cx, it, it.def_id, AssocItemRender::All)
4615 }
4616
4617 fn item_keyword(w: &mut Buffer, cx: &Context, it: &clean::Item) {
4618     document(w, cx, it)
4619 }
4620
4621 crate const BASIC_KEYWORDS: &'static str = "rust, rustlang, rust-lang";
4622
4623 fn make_item_keywords(it: &clean::Item) -> String {
4624     format!("{}, {}", BASIC_KEYWORDS, it.name.as_ref().unwrap())
4625 }
4626
4627 /// Returns a list of all paths used in the type.
4628 /// This is used to help deduplicate imported impls
4629 /// for reexported types. If any of the contained
4630 /// types are re-exported, we don't use the corresponding
4631 /// entry from the js file, as inlining will have already
4632 /// picked up the impl
4633 fn collect_paths_for_type(first_ty: clean::Type) -> Vec<String> {
4634     let mut out = Vec::new();
4635     let mut visited = FxHashSet::default();
4636     let mut work = VecDeque::new();
4637     let cache = cache();
4638
4639     work.push_back(first_ty);
4640
4641     while let Some(ty) = work.pop_front() {
4642         if !visited.insert(ty.clone()) {
4643             continue;
4644         }
4645
4646         match ty {
4647             clean::Type::ResolvedPath { did, .. } => {
4648                 let get_extern = || cache.external_paths.get(&did).map(|s| s.0.clone());
4649                 let fqp = cache.exact_paths.get(&did).cloned().or_else(get_extern);
4650
4651                 match fqp {
4652                     Some(path) => {
4653                         out.push(path.join("::"));
4654                     }
4655                     _ => {}
4656                 };
4657             }
4658             clean::Type::Tuple(tys) => {
4659                 work.extend(tys.into_iter());
4660             }
4661             clean::Type::Slice(ty) => {
4662                 work.push_back(*ty);
4663             }
4664             clean::Type::Array(ty, _) => {
4665                 work.push_back(*ty);
4666             }
4667             clean::Type::RawPointer(_, ty) => {
4668                 work.push_back(*ty);
4669             }
4670             clean::Type::BorrowedRef { type_, .. } => {
4671                 work.push_back(*type_);
4672             }
4673             clean::Type::QPath { self_type, trait_, .. } => {
4674                 work.push_back(*self_type);
4675                 work.push_back(*trait_);
4676             }
4677             _ => {}
4678         }
4679     }
4680     out
4681 }
4682
4683 crate fn cache() -> Arc<Cache> {
4684     CACHE_KEY.with(|c| c.borrow().clone())
4685 }