We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following code makes rustdoc show the module to the outside world when the module should be private.
#[crate_type = "lib"]; mod should_not_be_visible_outside_of_lib { pub use self::context::function_exposing_bug; mod context { pub fn function_exposing_bug() {} } }