pub enum Decltype {
IdExpression(Expression),
Expression(Expression),
}
Expand description
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 Eq for Decltype
impl StructuralPartialEq for Decltype
Auto Trait Implementations§
impl Freeze for Decltype
impl RefUnwindSafe for Decltype
impl Send for Decltype
impl Sync for Decltype
impl Unpin for Decltype
impl UnwindSafe for Decltype
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more