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§
source§impl Error for Error
impl Error for Error
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
source§impl PartialEq<Error> for Error
impl PartialEq<Error> for Error
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more