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
I just used this sample with the latest nightly (rustdoc 1.30.0-nightly (20dc0c507 2018-09-19)) and it didn't seem to show the Hidden struct? Can you confirm that this is still an issue?
This is still an issue. I've updated the description with a complete, working example, as well as a workaround that points to the root of the issue (#[doc(hidden)] being ignored on the re-export in parent).
Consider a crate
parent
with the following items:where
module.rs
contains:Now consider a crate
foo
that inline, glob-exportsparent
in a modulepar
:The item
Hidden
is rendered in the rustdocs forfoo::par
when it shouldn't be.To work around this issue,
#[doc(hidden)]
can be applied to theHidden
item inmodule.rs
:This workaround only works when
#[doc(hidden)]
is applied to the source definition.cc @QuietMisdreavus
The text was updated successfully, but these errors were encountered: