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

The encoding of the mangled symbol name.

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MangledName
[src]

Formats the value using the given formatter.

impl PartialEq for MangledName
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for MangledName
[src]