pub enum PointerTypeType<'tree> {
AliasQualifiedName(Box<AliasQualifiedName<'tree>>),
FunctionPointerType(Box<FunctionPointerType<'tree>>),
GenericName(Box<GenericName<'tree>>),
Identifier(Box<Identifier<'tree>>),
NullableType(Box<NullableType<'tree>>),
PointerType(Box<PointerType<'tree>>),
PredefinedType(Box<PredefinedType<'tree>>),
QualifiedName(Box<QualifiedName<'tree>>),
TupleType(Box<TupleType<'tree>>),
}Variants§
AliasQualifiedName(Box<AliasQualifiedName<'tree>>)
FunctionPointerType(Box<FunctionPointerType<'tree>>)
GenericName(Box<GenericName<'tree>>)
Identifier(Box<Identifier<'tree>>)
NullableType(Box<NullableType<'tree>>)
PointerType(Box<PointerType<'tree>>)
PredefinedType(Box<PredefinedType<'tree>>)
QualifiedName(Box<QualifiedName<'tree>>)
TupleType(Box<TupleType<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for PointerTypeType<'tree>
impl<'tree> Clone for PointerTypeType<'tree>
Source§fn clone(&self) -> PointerTypeType<'tree>
fn clone(&self) -> PointerTypeType<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PointerTypeType<'tree>
impl<'tree> Debug for PointerTypeType<'tree>
impl<'tree> Eq for PointerTypeType<'tree>
Source§impl<'tree> FromNode<'tree> for PointerTypeType<'tree>
impl<'tree> FromNode<'tree> for PointerTypeType<'tree>
Source§impl<'tree> PartialEq for PointerTypeType<'tree>
impl<'tree> PartialEq for PointerTypeType<'tree>
Source§impl Spanned for PointerTypeType<'_>
impl Spanned for PointerTypeType<'_>
impl<'tree> StructuralPartialEq for PointerTypeType<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PointerTypeType<'tree>
impl<'tree> RefUnwindSafe for PointerTypeType<'tree>
impl<'tree> Send for PointerTypeType<'tree>
impl<'tree> Sync for PointerTypeType<'tree>
impl<'tree> Unpin for PointerTypeType<'tree>
impl<'tree> UnsafeUnpin for PointerTypeType<'tree>
impl<'tree> UnwindSafe for PointerTypeType<'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