-
Notifications
You must be signed in to change notification settings - Fork 662
Closed
Labels
Description
futures
and futures-core
reexport a bunch of things with #[doc(hidden)]
. rust-analyzer will in the future hide doc(hidden)
items from completions and autoimport (it already does so if the item itself is hidden, it's just not handling hidden reexports yet), so if these reexport are actually intended to be used, they probably shouldn't be hidden; they might instead need doc(no_inline)
or just no annotation.
CC rust-lang/rust-analyzer#7718 (see the discussion at the end) and rust-lang/rust-analyzer#9197.