Enum cpp_demangle::ast::BuiltinType
source · pub enum BuiltinType {
Standard(StandardBuiltinType),
Extension(SourceName),
}
Expand description
The <builtin-type>
production.
Variants§
Standard(StandardBuiltinType)
A standards compliant builtin type.
Extension(SourceName)
A non-standard, vendor extension type.
<builtin-type> ::= u <source-name> # vendor extended type
Trait Implementations§
source§impl Clone for BuiltinType
impl Clone for BuiltinType
source§fn clone(&self) -> BuiltinType
fn clone(&self) -> BuiltinType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more