Enum cpp_demangle::ast::MangledName [−][src]
pub enum MangledName { Encoding(Encoding, Vec<CloneSuffix>), BlockInvoke(Encoding, Option<isize>), Type(TypeHandle), GlobalCtorDtor(GlobalCtorDtor), }
The root AST node, and starting production.
<mangled-name> ::= _Z <encoding> [<clone-suffix>]*
::= ___Z <encoding> <block_invoke>
::= <type>
<block_invoke> ::= _block_invoke
::= _block_invoke<decimal-digit>+
::= _block_invoke_<decimal-digit>+
Variants
Encoding(Encoding, Vec<CloneSuffix>)
The encoding of the mangled symbol name.
The encoding of the mangled symbol name.
Type(TypeHandle)
A top-level type. Technically not allowed by the standard, however in practice this can happen, and is tested for by libiberty.
GlobalCtorDtor(GlobalCtorDtor)
A global constructor or destructor. This is another de facto standard
extension (I think originally from g++
?) that is not actually part of
the standard proper.
Trait Implementations
impl Clone for MangledName
[src]
impl Clone for MangledName
[src]fn clone(&self) -> MangledName
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<MangledName> for MangledName
[src]
impl PartialEq<MangledName> for MangledName
[src]