We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Example:
mod priv_mod { pub struct Foo; } #[doc(hidden)] pub use priv_mod::Foo;
With this code, we get:
error: missing documentation for a struct
Whereas we shouldn't since Foo is hidden.
Foo