Enum cpp_demangle::ast::Decltype
[−]
[src]
pub enum Decltype {
IdExpression(Expression),
Expression(Expression),
}The <decltype> production.
<decltype> ::= Dt <expression> E
::= DT <expression> E
Variants
IdExpression(Expression)A decltype of an id-expression or class member access (C++0x).
Expression(Expression)A decltype of an expression (C++0x).
Trait Implementations
impl Clone for Decltype[src]
fn clone(&self) -> Decltype
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for Decltype[src]
impl PartialEq for Decltype[src]
fn eq(&self, __arg_0: &Decltype) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Decltype) -> bool
This method tests for !=.