Struct cpp_demangle::DemangleOptions [−][src]
Options to control the demangling process.
Implementations
impl DemangleOptions
[src]
pub fn new() -> Self
[src]
Construct a new DemangleOptions
with the default values.
pub fn no_params(self) -> Self
[src]
Do not display function arguments.
pub fn no_return_type(self) -> Self
[src]
Do not display the function return type.
pub fn recursion_limit(self, limit: u32) -> Self
[src]
Set the limit on recursion depth during the demangling phase. A low limit will cause valid symbols to be rejected, but a high limit may allow pathological symbols to overflow the stack during demangling. The default value is 128.
Trait Implementations
impl Clone for DemangleOptions
[src]
fn clone(&self) -> DemangleOptions
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for DemangleOptions
[src]
impl Debug for DemangleOptions
[src]
impl Default for DemangleOptions
[src]
fn default() -> 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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,