You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// A collection of all items in the local crate as well as some external traits and their
25
32
/// items that are referenced locally.
26
-
pubindex:FxHashMap<Id,Item>,
33
+
pubindex:HashMap<Id,Item>,
27
34
/// Maps IDs to fully qualified paths and other info helpful for generating links.
28
-
pubpaths:FxHashMap<Id,ItemSummary>,
35
+
pubpaths:HashMap<Id,ItemSummary>,
29
36
/// Maps `crate_id` of items to a crate name and html_root_url if it exists.
30
-
pubexternal_crates:FxHashMap<u32,ExternalCrate>,
37
+
pubexternal_crates:HashMap<u32,ExternalCrate>,
31
38
/// A single version number to be used in the future when making backwards incompatible changes
32
39
/// to the JSON output.
33
40
pubformat_version:u32,
@@ -79,7 +86,7 @@ pub struct Item {
79
86
/// Some("") if there is some documentation but it is empty (EG `#[doc = ""]`).
80
87
pubdocs:Option<String>,
81
88
/// This mapping resolves [intra-doc links](https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md) from the docstring to their IDs
82
-
publinks:FxHashMap<String,Id>,
89
+
publinks:HashMap<String,Id>,
83
90
/// Stringified versions of the attributes on this item (e.g. `"#[inline]"`)
0 commit comments