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
Copy file name to clipboardexpand all lines: src/rustdoc-json-types/lib.rs
+8-9
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,9 @@
3
3
//! These types are the public API exposed through the `--output-format json` flag. The [`Crate`]
4
4
//! struct is the root of the JSON blob and all other items are contained within.
5
5
6
-
use std::collections::HashMap;
7
-
use std::path::PathBuf;
8
-
6
+
use rustc_hash::FxHashMap;
9
7
use serde::{Deserialize,Serialize};
8
+
use std::path::PathBuf;
10
9
11
10
/// rustdoc format-version.
12
11
pubconstFORMAT_VERSION:u32 = 24;
@@ -24,11 +23,11 @@ pub struct Crate {
24
23
pubincludes_private:bool,
25
24
/// A collection of all items in the local crate as well as some external traits and their
26
25
/// items that are referenced locally.
27
-
pubindex:HashMap<Id,Item>,
26
+
pubindex:FxHashMap<Id,Item>,
28
27
/// Maps IDs to fully qualified paths and other info helpful for generating links.
29
-
pubpaths:HashMap<Id,ItemSummary>,
28
+
pubpaths:FxHashMap<Id,ItemSummary>,
30
29
/// Maps `crate_id` of items to a crate name and html_root_url if it exists.
31
-
pubexternal_crates:HashMap<u32,ExternalCrate>,
30
+
pubexternal_crates:FxHashMap<u32,ExternalCrate>,
32
31
/// A single version number to be used in the future when making backwards incompatible changes
33
32
/// to the JSON output.
34
33
pubformat_version:u32,
@@ -54,8 +53,8 @@ pub struct ItemSummary {
54
53
///
55
54
/// Note that items can appear in multiple paths, and the one chosen is implementation
56
55
/// defined. Currently, this is the full path to where the item was defined. Eg
57
-
/// [`String`] is currently `["alloc", "string", "String"]` and [`HashMap`] is
58
-
/// `["std", "collections", "hash", "map", "HashMap"]`, but this is subject to change.
56
+
/// [`String`] is currently `["alloc", "string", "String"]` and [`HashMap`][`std::collections::HashMap`]
57
+
/// is `["std", "collections", "hash", "map", "HashMap"]`, but this is subject to change.
59
58
pubpath:Vec<String>,
60
59
/// Whether this item is a struct, trait, macro, etc.
61
60
pubkind:ItemKind,
@@ -80,7 +79,7 @@ pub struct Item {
80
79
/// Some("") if there is some documentation but it is empty (EG `#[doc = ""]`).
81
80
pubdocs:Option<String>,
82
81
/// 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
83
-
publinks:HashMap<String,Id>,
82
+
publinks:FxHashMap<String,Id>,
84
83
/// Stringified versions of the attributes on this item (e.g. `"#[inline]"`)
0 commit comments