Enum cpp_demangle::ast::UnresolvedType [] [src]

pub enum UnresolvedType {
    Template(TemplateParamOption<TemplateArgs>),
    Decltype(Decltype),
}

The <unresolved-type> production.

<unresolved-type> ::= <template-param> [ <template-args> ]  # T:: or T<X,Y>::
                  ::= <decltype>                            # decltype(p)::
                  ::= <substitution>

Variants

An unresolved template type.

An unresolved decltype.

Trait Implementations

impl Clone for UnresolvedType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UnresolvedType
[src]

Formats the value using the given formatter.

impl Hash for UnresolvedType
[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 UnresolvedType
[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 UnresolvedType
[src]