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]
impl Clone for Decltypefn clone(&self) -> Decltype[src]
fn clone(&self) -> DecltypeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Decltype[src]
impl Debug for Decltypefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Decltype[src]
impl PartialEq for Decltypefn eq(&self, other: &Decltype) -> bool[src]
fn eq(&self, other: &Decltype) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Decltype) -> bool[src]
fn ne(&self, other: &Decltype) -> boolThis method tests for !=.
impl Eq for Decltype[src]
impl Eq for Decltype