Enum cpp_demangle::ast::PrefixHandle
[−]
[src]
pub enum PrefixHandle {
WellKnown(WellKnownComponent),
BackReference(usize),
NonSubstitution(NonSubstitution),
}A reference to a parsed <prefix> production.
Variants
WellKnown(WellKnownComponent)A reference to a "well-known" component.
BackReference(usize)A back-reference into the substitution table to a component we have already parsed.
NonSubstitution(NonSubstitution)A handle to some <prefix> component that isn't by itself
substitutable; instead, it's only substitutable with its parent
component.
Methods
impl PrefixHandle[src]
fn back_reference(&self) -> Option<usize>[src]
If this is a BackReference, get its index.
Trait Implementations
impl Clone for PrefixHandle[src]
fn clone(&self) -> PrefixHandle[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for PrefixHandle[src]
impl PartialEq for PrefixHandle[src]
fn eq(&self, __arg_0: &PrefixHandle) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &PrefixHandle) -> bool[src]
This method tests for !=.