Enum cpp_demangle::ast::Name [] [src]

pub enum Name {
    Nested(NestedName),
    Unscoped(UnscopedName),
    UnscopedTemplate(UnscopedTemplateNameHandleTemplateArgs),
    Local(LocalName),
    Std(UnqualifiedName),
}

The <name> production.

<name> ::= <nested-name>
       ::= <unscoped-name>
       ::= <unscoped-template-name> <template-args>
       ::= <local-name>
       ::= St <unqualified-name> # ::std::

Variants

A nested name

An unscoped name.

An unscoped template.

A local name.

A name in ::std::.

Trait Implementations

impl Clone for Name
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Name
[src]

Formats the value using the given formatter.

impl Hash for Name
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl PartialEq for Name
[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 Name
[src]