pub enum TypeSpecifier<'tree> {
ClassSpecifier(Box<ClassSpecifier<'tree>>),
Decltype(Box<Decltype<'tree>>),
DependentType(Box<DependentType<'tree>>),
EnumSpecifier(Box<EnumSpecifier<'tree>>),
PlaceholderTypeSpecifier(Box<PlaceholderTypeSpecifier<'tree>>),
PrimitiveType(Box<PrimitiveType<'tree>>),
QualifiedIdentifier(Box<QualifiedIdentifier<'tree>>),
SizedTypeSpecifier(Box<SizedTypeSpecifier<'tree>>),
StructSpecifier(Box<StructSpecifier<'tree>>),
TemplateType(Box<TemplateType<'tree>>),
TypeIdentifier(Box<TypeIdentifier<'tree>>),
UnionSpecifier(Box<UnionSpecifier<'tree>>),
}Variants§
ClassSpecifier(Box<ClassSpecifier<'tree>>)
Decltype(Box<Decltype<'tree>>)
DependentType(Box<DependentType<'tree>>)
EnumSpecifier(Box<EnumSpecifier<'tree>>)
PlaceholderTypeSpecifier(Box<PlaceholderTypeSpecifier<'tree>>)
PrimitiveType(Box<PrimitiveType<'tree>>)
QualifiedIdentifier(Box<QualifiedIdentifier<'tree>>)
SizedTypeSpecifier(Box<SizedTypeSpecifier<'tree>>)
StructSpecifier(Box<StructSpecifier<'tree>>)
TemplateType(Box<TemplateType<'tree>>)
TypeIdentifier(Box<TypeIdentifier<'tree>>)
UnionSpecifier(Box<UnionSpecifier<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for TypeSpecifier<'tree>
impl<'tree> Clone for TypeSpecifier<'tree>
Source§fn clone(&self) -> TypeSpecifier<'tree>
fn clone(&self) -> TypeSpecifier<'tree>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for TypeSpecifier<'tree>
impl<'tree> Debug for TypeSpecifier<'tree>
Source§impl<'tree> FromNode<'tree> for TypeSpecifier<'tree>
impl<'tree> FromNode<'tree> for TypeSpecifier<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TypeSpecifier<'tree>
impl<'tree> RefUnwindSafe for TypeSpecifier<'tree>
impl<'tree> Send for TypeSpecifier<'tree>
impl<'tree> Sync for TypeSpecifier<'tree>
impl<'tree> Unpin for TypeSpecifier<'tree>
impl<'tree> UnsafeUnpin for TypeSpecifier<'tree>
impl<'tree> UnwindSafe for TypeSpecifier<'tree>
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