pub struct DemangleOptions { /* private fields */ }
Expand description
Options for Demangle::demangle
.
One can chose from complete, or name-only demangling, and toggle specific demangling features explicitly.
The resulting output depends very much on the language of the mangled Name
, and may change
over time as more fine grained demangling options and features are added. Not all options are
fully supported by each language, and not every feature is mutually exclusive on all languages.
§Examples
use symbolic_common::{Name, NameMangling, Language};
use symbolic_demangle::{Demangle, DemangleOptions};
let symbol = Name::new("$s8mangling12GenericUnionO3FooyACyxGSicAEmlF", NameMangling::Mangled, Language::Swift);
let simple = symbol.demangle(DemangleOptions::name_only()).unwrap();
assert_eq!(&simple, "GenericUnion.Foo<A>");
let full = symbol.demangle(DemangleOptions::complete()).unwrap();
assert_eq!(&full, "mangling.GenericUnion.Foo<A>(mangling.GenericUnion<A>.Type) -> (Swift.Int) -> mangling.GenericUnion<A>");
Implementations§
Source§impl DemangleOptions
impl DemangleOptions
Sourcepub const fn name_only() -> Self
pub const fn name_only() -> Self
DemangleOptions that output the most simple (likely name-only) demangling.
Sourcepub const fn return_type(self, return_type: bool) -> Self
pub const fn return_type(self, return_type: bool) -> Self
Determines whether a functions return type should be demangled.
Sourcepub const fn parameters(self, parameters: bool) -> Self
pub const fn parameters(self, parameters: bool) -> Self
Determines whether function argument types should be demangled.
Trait Implementations§
Source§impl Clone for DemangleOptions
impl Clone for DemangleOptions
Source§fn clone(&self) -> DemangleOptions
fn clone(&self) -> DemangleOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DemangleOptions
impl Debug for DemangleOptions
impl Copy for DemangleOptions
Auto Trait Implementations§
impl Freeze for DemangleOptions
impl RefUnwindSafe for DemangleOptions
impl Send for DemangleOptions
impl Sync for DemangleOptions
impl Unpin for DemangleOptions
impl UnwindSafe for DemangleOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)