We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
For example, given foo.rs:
foo.rs
pub const MAGIC: u32 = 0xDEADBEEF;
And bar.rs:
bar.rs
extern crate foo; pub use MAGIC = foo::MAGIC;
The generated rustdocs for bar.rs show something like:
pub const MAGIC: u32 =