Enum cpp_demangle::ast::MangledName
[−]
[src]
pub enum MangledName {
Encoding(Encoding),
Type(TypeHandle),
}The root AST node, and starting production.
<mangled-name> ::= _Z <encoding>
Variants
Encoding(Encoding)The encoding of the mangled symbol name.
Type(TypeHandle)A top-level type. Technically not allowed by the standard, however in practice this can happen, and is tested for by libiberty.
Trait Implementations
impl Clone for MangledName[src]
fn clone(&self) -> MangledName
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for MangledName[src]
impl PartialEq for MangledName[src]
fn eq(&self, __arg_0: &MangledName) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &MangledName) -> bool
This method tests for !=.