Hi,
I'm re-exporting some types from a crate I use:
pub use picky::{hash::HashAlgorithm, key::PrivateKey, x509::name::DirectoryName, x509::Csr};
What's bothering me is rustdoc documenting them as being part of my own crate.
I think I saw a "Re-exported" category in some docs, how to get this section for these type?
Thanks!
Use #[doc(no_inline)] on the pub use line:
#[doc(no_inline)]
pub use bar::Bar;
For details, see:
https://doc.rust-lang.org/rustdoc/the-doc-attribute.html#docno_inlinedocinline
2 Likes
system
Closed
4
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.