Enum cpp_demangle::ast::ExprPrimary [−][src]
pub enum ExprPrimary { Literal(TypeHandle, usize, usize), External(MangledName), }
The <expr-primary>
production.
<expr-primary> ::= L <type> <value number> E # integer literal
::= L <type> <value float> E # floating literal
::= L <string type> E # string literal
::= L <nullptr type> E # nullptr literal (i.e., "LDnE")
::= L <pointer type> 0 E # null pointer template argument
::= L <type> <real-part float> _ <imag-part float> E # complex floating point literal (C 2000)
::= L <mangled-name> E # external name
Variants
Literal(TypeHandle, usize, usize)
A type literal.
External(MangledName)
An external name.
Trait Implementations
impl Clone for ExprPrimary
[src]
impl Clone for ExprPrimary
[src]fn clone(&self) -> ExprPrimary
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<ExprPrimary> for ExprPrimary
[src]
impl PartialEq<ExprPrimary> for ExprPrimary
[src]