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
/// The root URL at which the crate's documentation lives.
65
72
pubhtml_root_url:Option<String>,
@@ -112,7 +119,9 @@ pub struct Item {
112
119
pubdocs:Option<String>,
113
120
/// 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
114
121
publinks:HashMap<String,Id>,
115
-
/// Stringified versions of the attributes on this item (e.g. `"#[inline]"`)
122
+
/// Stringified versions of parsed attributes on this item.
123
+
/// Essentially debug printed (e.g. `#[inline]` becomes something similar to `#[attr="Inline(Hint)"]`).
124
+
/// Equivalent to the hir pretty-printing of attributes.
116
125
pubattrs:Vec<String>,
117
126
/// Information about the item’s deprecation, if present.
0 commit comments