Enum cpp_demangle::ast::UnqualifiedName  [−][src]
The <unqualified-name> production.
<unqualified-name> ::= <operator-name>
                   ::= <ctor-dtor-name>
                   ::= <source-name>
                   ::= <local-source-name>
                   ::= <unnamed-type-name>
                   ::= <abi-tag>
                   ::= <closure-type-name>
# I think this is from an older version of the standard. It isn't in the
# current version, but all the other demanglers support it, so we will too.
<local-source-name> ::= L <source-name> [<discriminator>]
Variants
Operator(OperatorName)An operator name.
CtorDtor(CtorDtorName)A constructor or destructor name.
Source(SourceName)A source name.
LocalSourceName(SourceName, Option<Discriminator>)A local source name.
UnnamedType(UnnamedTypeName)A generated name for an unnamed type.
ABITag(TaggedName)An ABI tag.
ClosureType(ClosureTypeName)A closure type name
Trait Implementations
impl Clone for UnqualifiedName[src]
fn clone(&self) -> UnqualifiedName[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for UnqualifiedName[src]
impl Eq for UnqualifiedName[src]
impl PartialEq<UnqualifiedName> for UnqualifiedName[src]
fn eq(&self, other: &UnqualifiedName) -> bool[src]
fn ne(&self, other: &UnqualifiedName) -> bool[src]
impl StructuralEq for UnqualifiedName[src]
impl StructuralPartialEq for UnqualifiedName[src]
Auto Trait Implementations
impl RefUnwindSafe for UnqualifiedName
impl Send for UnqualifiedName
impl Sync for UnqualifiedName
impl Unpin for UnqualifiedName
impl UnwindSafe for UnqualifiedName
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>,