Enum cpp_demangle::ast::Decltype [] [src]

pub enum Decltype {
    IdExpression(Expression),
    Expression(Expression),
}

The <decltype> production.

<decltype> ::= Dt <expression> E
           ::= DT <expression> E

Variants

A decltype of an id-expression or class member access (C++0x).

A decltype of an expression (C++0x).

Trait Implementations

impl Clone for Decltype
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Decltype
[src]

Formats the value using the given formatter.

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