Enum cpp_demangle::ast::Substitution
source · [−]pub enum Substitution {
BackReference(usize),
WellKnown(WellKnownComponent),
}
Expand description
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
sourceimpl Clone for Substitution
impl Clone for Substitution
sourcefn clone(&self) -> Substitution
fn clone(&self) -> Substitution
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Substitution
impl Debug for Substitution
sourceimpl PartialEq<Substitution> for Substitution
impl PartialEq<Substitution> for Substitution
sourcefn eq(&self, other: &Substitution) -> bool
fn eq(&self, other: &Substitution) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Substitution) -> bool
fn ne(&self, other: &Substitution) -> bool
This method tests for !=
.
impl Eq for Substitution
impl StructuralEq for Substitution
impl StructuralPartialEq for Substitution
Auto Trait Implementations
impl RefUnwindSafe for Substitution
impl Send for Substitution
impl Sync for Substitution
impl Unpin for Substitution
impl UnwindSafe for Substitution
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more