Demangle Rust compiler symbol names.
This crate provides a demangle function which will return a Demangle
sentinel value that can be used to learn about the demangled version of a
symbol name. The demangled representation will be the same as the original
if it doesn't look like a mangled symbol name.
Demangle can be formatted with the Display trait. The alternate
modifier (#) can be used to format the symbol name without the
trailing hash value.
Examples
use demangle;
assert_eq!;
assert_eq!;
assert_eq!;
// With hash
assert_eq!;
// Without hash
assert_eq!;