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

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

The <name> production.

<name> ::= <nested-name>
       ::= <unscoped-name>
       ::= <unscoped-template-name> <template-args>
       ::= <local-name>

Variants

A nested name

An unscoped name.

An unscoped template.

A local name.

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 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]