Example: ```rust 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.
Example:
With this code, we get:
Whereas we shouldn't since
Foois hidden.