ast-demangle

crates.io docs CI Codecov Coveralls

Parses mangled names and produces structured results.

Example:

```rust use astdemangle::rustv0::{DisplayStyle, Identifier, Path, Symbol}; use std::borrow::Cow;

let mangledname = "RNvNtCs6GSVXm7oiwY5regex4utf811decodeutf8.llvm.1119170478327948870"; let (symbol, suffix) = Symbol::parsefromstr(mangled_name).unwrap();

// The suffix is returned. assert_eq!(suffix, "");

// The default style for displaying is the long format. asserteq!(format!("{}", symbol), "regex[4df147058689a776]::utf8::decodeutf8");

// To omit the crate hash, use the alternate display format. asserteq!(format!("{:#}", symbol), "regex::utf8::decodeutf8");

// Use Symbol::display and DisplayStyle to specify the display style explicitly.

asserteq!(format!("{}", symbol.display(DisplayStyle::Short)), "decodeutf8"); asserteq!(format!("{}", symbol.display(DisplayStyle::Normal)), "regex::utf8::decodeutf8");

asserteq!( format!("{}", symbol.display(DisplayStyle::Long)), "regex[4df147058689a776]::utf8::decodeutf8" );

// You can access the structure of the demangled symbol.

asserteq!( symbol, Symbol { version: None, path: Path::Nested { namespace: b'v', path: Path::Nested { namespace: b't', path: Path::CrateRoot(Identifier { disambiguator: 0x4df147058689a776, name: Cow::Borrowed("regex") }) .into(), identifier: Identifier { disambiguator: 0, name: Cow::Borrowed("utf8") } } .into(), identifier: Identifier { disambiguator: 0, name: Cow::Borrowed("decodeutf8") } } .into(), instantiatingcrate: None, vendorspecificsuffix: Some(".llvm.1119170478327948870"), } ); ```