Enum cpp_demangle::ast::Name  
                   
                       [−]
                   
               [src]
pub enum Name {
    Nested(NestedName),
    Unscoped(UnscopedName),
    UnscopedTemplate(UnscopedTemplateNameHandle, TemplateArgs),
    Local(LocalName),
}The <name> production.
<name> ::= <nested-name>
       ::= <unscoped-name>
       ::= <unscoped-template-name> <template-args>
       ::= <local-name>
Variants
Nested(NestedName)A nested name
Unscoped(UnscopedName)An unscoped name.
UnscopedTemplate(UnscopedTemplateNameHandle, TemplateArgs)An unscoped template.
Local(LocalName)A local name.
Trait Implementations
impl Clone for Name[src]
fn clone(&self) -> Name[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for Name[src]
impl PartialEq for Name[src]
fn eq(&self, __arg_0: &Name) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Name) -> bool[src]
This method tests for !=.