Enum cpp_demangle::ast::Prefix
source · pub enum Prefix {
Unqualified(UnqualifiedName),
Nested(PrefixHandle, UnqualifiedName),
Template(PrefixHandle, TemplateArgs),
TemplateParam(TemplateParam),
Decltype(Decltype),
DataMember(PrefixHandle, DataMemberPrefix),
}
Expand description
The <prefix>
production.
<prefix> ::= <unqualified-name>
::= <prefix> <unqualified-name>
::= <template-prefix> <template-args>
::= <template-param>
::= <decltype>
::= <prefix> <data-member-prefix>
::= <substitution>
<template-prefix> ::= <template unqualified-name>
::= <prefix> <template unqualified-name>
::= <template-param>
::= <substitution>
Variants§
Unqualified(UnqualifiedName)
An unqualified name.
Nested(PrefixHandle, UnqualifiedName)
Some nested name.
Template(PrefixHandle, TemplateArgs)
A prefix and template arguments.
TemplateParam(TemplateParam)
A template parameter.
Decltype(Decltype)
A decltype.
DataMember(PrefixHandle, DataMemberPrefix)
A prefix and data member.
Trait Implementations§
source§impl PartialEq for Prefix
impl PartialEq for Prefix
impl Eq for Prefix
impl StructuralPartialEq for Prefix
Auto Trait Implementations§
impl Freeze for Prefix
impl RefUnwindSafe for Prefix
impl Send for Prefix
impl Sync for Prefix
impl Unpin for Prefix
impl UnwindSafe for Prefix
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)