Enum cpp_demangle::error::Error
source · [−]pub enum Error {
UnexpectedEnd,
UnexpectedText,
BadBackReference,
BadTemplateArgReference,
ForwardTemplateArgReference,
BadFunctionArgReference,
BadLeafNameReference,
Overflow,
TooMuchRecursion,
}
Expand description
Errors that can occur while demangling a symbol.
Variants
UnexpectedEnd
The mangled symbol ends abruptly.
UnexpectedText
The mangled symbol is not well-formed.
BadBackReference
Found a back reference that is out-of-bounds of the substitution table.
BadTemplateArgReference
Found a reference to a template arg that is either out-of-bounds, or in a context without template args.
ForwardTemplateArgReference
Found a reference to a template arg from within the arg itself (or from within an earlier arg).
BadFunctionArgReference
Found a reference to a function arg that is either out-of-bounds, or in a context without function args.
BadLeafNameReference
Found a reference to a leaf name in a context where there is no current leaf name.
Overflow
An overflow or underflow would occur when parsing an integer in a mangled symbol.
TooMuchRecursion
Encountered too much recursion when demangling symbol.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
impl Copy for Error
impl Eq for Error
impl StructuralEq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more