Enum rustc_demangle::v0::ParseError
source · pub enum ParseError {
Invalid,
RecursedTooDeep,
}
Variants§
Invalid
Symbol doesn’t match the expected v0
grammar.
RecursedTooDeep
Parsing the symbol crossed the recursion limit (see MAX_DEPTH
).
Implementations§
Trait Implementations§
source§impl Debug for ParseError
impl Debug for ParseError
source§impl Eq for ParseError
impl Eq for ParseError
fn assert_receiver_is_total_eq(&self)
source§impl PartialEq<ParseError> for ParseError
impl PartialEq<ParseError> for ParseError
source§fn eq(&self, other: &ParseError) -> bool
fn eq(&self, other: &ParseError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralEq for ParseError
impl StructuralPartialEq for ParseError
Auto Trait Implementations§
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
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