Enum cpp_demangle::ast::Substitution [−][src]
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]
fn clone(&self) -> Substitution[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for Substitution[src]
impl Eq for Substitution[src]
impl PartialEq<Substitution> for Substitution[src]
fn eq(&self, other: &Substitution) -> bool[src]
fn ne(&self, other: &Substitution) -> bool[src]
impl StructuralEq for Substitution[src]
impl StructuralPartialEq for Substitution[src]
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,