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
Rustdoc should hide private and should be private items like statics, functions, structs where priv or non-pub is effectively malfunctioning today.
Lots of non-pub methods, functions, structs are now showing up in the official Trunk documentation, and thanks to bugs it's possible to use some of these as well (for example std::hashmap::resize_at is can be called).
Documentation is easier to understand if only pub items are shown
We want to avoid users starting to rely on non-pub items.
Use macro callsite when creating `Sugg` helper
Closesrust-lang#9375
changelog: Improvement: [`collapsible_if`]: Suggestions now work with macros, by taking the call site into account.
Rustdoc should hide private and should be private items like statics, functions, structs where
priv
or non-pub is effectively malfunctioning today.Lots of non-pub methods, functions, structs are now showing up in the official Trunk documentation, and thanks to bugs it's possible to use some of these as well (for example
std::hashmap::resize_at
is can be called).pub
items are shownTag #8125
The text was updated successfully, but these errors were encountered: