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/librustdoc/json/types.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ pub struct Item {
69
69
/// so this field is needed to differentiate.
70
70
pubvisibility:Visibility,
71
71
/// The full markdown docstring of this item.
72
-
pubdocs:String,
72
+
pubdocs:Option<String>,
73
73
/// 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
74
74
publinks:FxHashMap<String,Id>,
75
75
/// Stringified versions of the attributes on this item (e.g. `"#[inline]"`)
0 commit comments