Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rustdoc pretends that the struct is empty when it only has hidden public fields #13806

Closed
lifthrasiir opened this issue Apr 27, 2014 · 1 comment · Fixed by #13827
Closed
Labels
T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Comments

@lifthrasiir
Copy link
Contributor

pub struct A { private: uint }
pub struct B { pub public: uint }
pub struct C { #[doc(hidden)] pub hidden: uint }

A correctly shows the "some fields omitted" comment, but C doesn't. (The recent example that exhibits this problem is regex::Regex). This is quite misleading.

@alexcrichton
Copy link
Member

Sounds like doc(hidden) fields should cause a field to behave as if it were priv in terms of rendering.

lifthrasiir added a commit to lifthrasiir/rust that referenced this issue Apr 28, 2014
bors added a commit that referenced this issue Apr 28, 2014
…lexcrichton

Fixes #13806. Also adds a note to `HiddenStructField` about why it doesn't appear in the `clean` module itself.
arcnmx pushed a commit to arcnmx/rust that referenced this issue Jan 9, 2023
fix: Skip adjustment hints if the adjustment is identity (`T` -> `T`)

Supersedes rust-lang/rust-analyzer#13765
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants