Struct cpp_demangle::DemangleOptions [−][src]
#[repr(C)]pub struct DemangleOptions { /* fields omitted */ }
Options to control the demangling process.
Implementations
impl DemangleOptions
[src]
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]
impl Clone for DemangleOptions
[src]fn clone(&self) -> DemangleOptions
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for DemangleOptions
[src]
impl Default for DemangleOptions
[src]