Struct cpp_demangle::ParseOptions[][src]

#[repr(C)]pub struct ParseOptions { /* fields omitted */ }

Options to control the parsing process.

Implementations

impl ParseOptions[src]

pub fn recursion_limit(self, limit: u32) -> Self[src]

Set the limit on recursion depth during the parsing phase. A low limit will cause valid symbols to be rejected, but a high limit may allow pathological symbols to overflow the stack during parsing. The default value is 96, which will not overflow the stack even in a debug build.

Trait Implementations

impl Clone for ParseOptions[src]

impl Copy for ParseOptions[src]

impl Debug for ParseOptions[src]

impl Default for ParseOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for ParseOptions

impl Send for ParseOptions

impl Sync for ParseOptions

impl Unpin for ParseOptions

impl UnwindSafe for ParseOptions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.