Struct symbolic_demangle::DemangleOptions [−][src]
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
impl DemangleOptions
[src][−]
pub const fn complete() -> Self
[src][−]
DemangleOptions that output a complete verbose demangling.
pub const fn name_only() -> Self
[src][−]
DemangleOptions that output the most simple (likely name-only) demangling.
pub const fn return_type(self, return_type: bool) -> Self
[src][−]
Determines whether a functions return type should be demangled.
pub const fn parameters(self, parameters: bool) -> Self
[src][−]
Determines whether function argument types should be demangled.
Trait Implementations
impl Clone for DemangleOptions
[src][+]
impl Copy for DemangleOptions
[src]
impl Debug for DemangleOptions
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for DemangleOptions
impl Send for DemangleOptions
impl Sync for DemangleOptions
impl Unpin for DemangleOptions
impl UnwindSafe for DemangleOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src][+]
V: MultiLane<T>,