Enum cpp_demangle::ast::NestedName [] [src]

pub enum NestedName {
    Unqualified(CvQualifiersOption<RefQualifier>, PrefixHandleUnqualifiedName),
    Template(CvQualifiersOption<RefQualifier>, PrefixHandle),
}

The <nested-name> production.

<nested-name> ::= N [<CV-qualifiers>] [<ref-qualifier>] <prefix> <unqualified-name> E
              ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix> <template-args> E

Variants

A nested name.

A nested template name. The <template-args> are part of the PrefixHandle.

Methods

impl NestedName
[src]

[src]

Get the CV-qualifiers for this name.

[src]

Get the ref-qualifier for this name, if one exists.

Trait Implementations

impl Clone for NestedName
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NestedName
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for NestedName
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for NestedName
[src]