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

source

pub const fn complete() -> Self

DemangleOptions that output a complete verbose demangling.

source

pub const fn name_only() -> Self

DemangleOptions that output the most simple (likely name-only) demangling.

source

pub const fn return_type(self, return_type: bool) -> Self

Determines whether a functions return type should be demangled.

source

pub const fn parameters(self, parameters: bool) -> Self

Determines whether function argument types should be demangled.

Trait Implementations§

source§

impl Clone for DemangleOptions

source§

fn clone(&self) -> DemangleOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DemangleOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for DemangleOptions

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.