Enum cpp_demangle::ast::LocalName
[−]
[src]
pub enum LocalName {
Relative(Box<Encoding>, Option<Box<Name>>, Option<Discriminator>),
Default(Box<Encoding>, Option<usize>, Box<Name>),
}The <local-name> production.
<local-name> := Z <function encoding> E <entity name> [<discriminator>]
:= Z <function encoding> E s [<discriminator>]
:= Z <function encoding> Ed [ <parameter number> ] _ <entity name>
Variants
Relative(Box<Encoding>, Option<Box<Name>>, Option<Discriminator>)The mangling of the enclosing function, the mangling of the entity relative to the function, and an optional discriminator.
Default(Box<Encoding>, Option<usize>, Box<Name>)A default argument in a class definition.
Trait Implementations
impl Clone for LocalName[src]
fn clone(&self) -> LocalName
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for LocalName[src]
impl PartialEq for LocalName[src]
fn eq(&self, __arg_0: &LocalName) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &LocalName) -> bool
This method tests for !=.