Enum cpp_demangle::ast::UnscopedName [−][src]
pub enum UnscopedName {
Unqualified(UnqualifiedName),
Std(UnqualifiedName),
}
Expand description
The <unscoped-name>
production.
<unscoped-name> ::= <unqualified-name>
::= St <unqualified-name> # ::std::
Variants
Unqualified(UnqualifiedName)
Tuple Fields
An unqualified name.
Std(UnqualifiedName)
Tuple Fields
A name within the std::
namespace.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UnscopedName
impl Send for UnscopedName
impl Sync for UnscopedName
impl Unpin for UnscopedName
impl UnwindSafe for UnscopedName
Blanket Implementations
Mutably borrows from an owned value. Read more