Skip to content

Commit 4e4e1ec

Browse files
authored
Rollup merge of #92456 - danielhenrymantilla:patch-1, r=petrochenkov
Make the documentation of builtin macro attributes accessible `use ::std::prelude::v1::derive;` compiles on stable, so, AFAIK, there is no reason to have it be `#[doc(hidden)]`. - What it currently looks like for things such as `#[test]`, `#[derive]`, `#[global_allocator]`: https://doc.rust-lang.org/1.57.0/core/prelude/v1/index.html#:~:text=Experimental-,pub,-use%20crate%3A%3Amacros%3A%3Abuiltin%3A%3Aglobal_allocator <img width="767" alt="Screen Shot 2021-12-31 at 17 49 46" src="https://user-images.githubusercontent.com/9920355/147832999-cbd747a6-4607-4df6-8e57-c1675dcbc1c3.png"> and in `::std` they're just straight `hidden`. <img width="452" alt="Screen Shot 2021-12-31 at 17 53 18" src="https://user-images.githubusercontent.com/9920355/147833105-c5ff8cd1-9e4d-4d2b-9621-b36aa3cfcb28.png"> - Here is how it looks like with this PR (assuming the `Rustc{De,En}codable` ones are not reverted): <img width="778" alt="Screen Shot 2021-12-31 at 17 50 55" src="https://user-images.githubusercontent.com/9920355/147833034-84286342-dbf7-4e6e-9062-f39cd6c286a4.png"> <img width="291" alt="Screen Shot 2021-12-31 at 17 52 54" src="https://user-images.githubusercontent.com/9920355/147833109-c92ed55c-51c6-40a2-9205-f834d1e349c0.png"> Since this involves doc people to chime in, and since `jyn` is on vacation, I'll cc `@GuillaumeGomez` and tag the `rustdoc` team as well
2 parents 855f630 + f20ccc0 commit 4e4e1ec

File tree

3 files changed

+25
-22
lines changed

3 files changed

+25
-22
lines changed

library/core/src/macros/mod.rs

+11-2
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,6 @@ pub(crate) mod builtin {
866866
language use and is subject to change"
867867
)]
868868
#[allow_internal_unstable(fmt_internals)]
869-
#[doc(hidden)]
870869
#[rustc_builtin_macro]
871870
#[macro_export]
872871
macro_rules! format_args_nl {
@@ -1428,13 +1427,21 @@ pub(crate) mod builtin {
14281427
}
14291428

14301429
/// Attribute macro used to apply derive macros.
1430+
///
1431+
/// See [the reference] for more info.
1432+
///
1433+
/// [the reference]: ../../../reference/attributes/derive.html
14311434
#[stable(feature = "rust1", since = "1.0.0")]
14321435
#[rustc_builtin_macro]
14331436
pub macro derive($item:item) {
14341437
/* compiler built-in */
14351438
}
14361439

14371440
/// Attribute macro applied to a function to turn it into a unit test.
1441+
///
1442+
/// See [the reference] for more info.
1443+
///
1444+
/// [the reference]: ../../../reference/attributes/testing.html#the-test-attribute
14381445
#[stable(feature = "rust1", since = "1.0.0")]
14391446
#[allow_internal_unstable(test, rustc_attrs)]
14401447
#[rustc_builtin_macro]
@@ -1469,7 +1476,7 @@ pub(crate) mod builtin {
14691476

14701477
/// Attribute macro applied to a static to register it as a global allocator.
14711478
///
1472-
/// See also [`std::alloc::GlobalAlloc`](../std/alloc/trait.GlobalAlloc.html).
1479+
/// See also [`std::alloc::GlobalAlloc`](../../../std/alloc/trait.GlobalAlloc.html).
14731480
#[stable(feature = "global_allocator", since = "1.28.0")]
14741481
#[allow_internal_unstable(rustc_attrs)]
14751482
#[rustc_builtin_macro]
@@ -1507,6 +1514,7 @@ pub(crate) mod builtin {
15071514
since = "1.52.0",
15081515
reason = "rustc-serialize is deprecated and no longer supported"
15091516
)]
1517+
#[doc(hidden)] // While technically stable, using it is unstable, and deprecated. Hide it.
15101518
pub macro RustcDecodable($item:item) {
15111519
/* compiler built-in */
15121520
}
@@ -1519,6 +1527,7 @@ pub(crate) mod builtin {
15191527
since = "1.52.0",
15201528
reason = "rustc-serialize is deprecated and no longer supported"
15211529
)]
1530+
#[doc(hidden)] // While technically stable, using it is unstable, and deprecated. Hide it.
15221531
pub macro RustcEncodable($item:item) {
15231532
/* compiler built-in */
15241533
}

library/core/src/prelude/v1.rs

+6-9
Original file line numberDiff line numberDiff line change
@@ -69,29 +69,26 @@ pub use crate::{
6969
#[doc(no_inline)]
7070
pub use crate::concat_bytes;
7171

72+
// Do not `doc(inline)` these `doc(hidden)` items.
7273
#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
73-
#[allow(deprecated, deprecated_in_future)]
74-
#[doc(no_inline)]
75-
pub use crate::macros::builtin::{
76-
bench, global_allocator, test, test_case, RustcDecodable, RustcEncodable,
77-
};
74+
#[allow(deprecated)]
75+
pub use crate::macros::builtin::{RustcDecodable, RustcEncodable};
7876

77+
// Do not `doc(no_inline)` so that they become doc items on their own
78+
// (no public module for them to be re-exported from).
7979
#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
80-
#[doc(no_inline)]
81-
pub use crate::macros::builtin::derive;
80+
pub use crate::macros::builtin::{bench, derive, global_allocator, test, test_case};
8281

8382
#[unstable(
8483
feature = "cfg_accessible",
8584
issue = "64797",
8685
reason = "`cfg_accessible` is not fully implemented"
8786
)]
88-
#[doc(no_inline)]
8987
pub use crate::macros::builtin::cfg_accessible;
9088

9189
#[unstable(
9290
feature = "cfg_eval",
9391
issue = "82679",
9492
reason = "`cfg_eval` is a recently implemented feature"
9593
)]
96-
#[doc(no_inline)]
9794
pub use crate::macros::builtin::cfg_eval;

library/std/src/prelude/v1.rs

+8-11
Original file line numberDiff line numberDiff line change
@@ -54,33 +54,30 @@ pub use core::prelude::v1::{
5454
#[doc(no_inline)]
5555
pub use core::prelude::v1::concat_bytes;
5656

57-
// FIXME: Attribute and internal derive macros are not documented because for them rustdoc generates
58-
// dead links which fail link checker testing.
57+
// Do not `doc(inline)` these `doc(hidden)` items.
5958
#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
60-
#[allow(deprecated, deprecated_in_future)]
61-
#[doc(hidden)]
62-
pub use core::prelude::v1::{
63-
bench, global_allocator, test, test_case, RustcDecodable, RustcEncodable,
64-
};
59+
#[allow(deprecated)]
60+
pub use core::prelude::v1::{RustcDecodable, RustcEncodable};
6561

62+
// Do not `doc(no_inline)` so that they become doc items on their own
63+
// (no public module for them to be re-exported from).
6664
#[stable(feature = "builtin_macro_prelude", since = "1.38.0")]
67-
#[doc(hidden)]
68-
pub use core::prelude::v1::derive;
65+
pub use core::prelude::v1::{bench, derive, global_allocator, test, test_case};
6966

67+
// Do not `doc(no_inline)` either.
7068
#[unstable(
7169
feature = "cfg_accessible",
7270
issue = "64797",
7371
reason = "`cfg_accessible` is not fully implemented"
7472
)]
75-
#[doc(hidden)]
7673
pub use core::prelude::v1::cfg_accessible;
7774

75+
// Do not `doc(no_inline)` either.
7876
#[unstable(
7977
feature = "cfg_eval",
8078
issue = "82679",
8179
reason = "`cfg_eval` is a recently implemented feature"
8280
)]
83-
#[doc(hidden)]
8481
pub use core::prelude::v1::cfg_eval;
8582

8683
// The file so far is equivalent to src/libcore/prelude/v1.rs,

0 commit comments

Comments
 (0)