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