Enum cpp_demangle::ast::Substitution [−][src]
pub enum Substitution { BackReference(usize), WellKnown(WellKnownComponent), }
The <substitution>
form: a back-reference to some component we’ve already
parsed.
<substitution> ::= S <seq-id> _
::= S_
::= St # ::std::
::= Sa # ::std::allocator
::= Sb # ::std::basic_string
::= Ss # ::std::basic_string < char,
::std::char_traits<char>,
::std::allocator<char> >
::= Si # ::std::basic_istream<char, std::char_traits<char> >
::= So # ::std::basic_ostream<char, std::char_traits<char> >
::= Sd # ::std::basic_iostream<char, std::char_traits<char> >
Variants
BackReference(usize)
A reference to an entity that already occurred, ie the S_
and S <seq-id> _
forms.
WellKnown(WellKnownComponent)
A well-known substitution component. These are the components that do not appear in the substitution table, but have abbreviations specified directly in the grammar.
Trait Implementations
impl Clone for Substitution
[src]
impl Clone for Substitution
[src]fn clone(&self) -> Substitution
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl PartialEq<Substitution> for Substitution
[src]
impl PartialEq<Substitution> for Substitution
[src]