pub enum Type<'tree> {
Show 13 variants
AliasQualifiedName(Box<AliasQualifiedName<'tree>>),
ArrayType(Box<ArrayType<'tree>>),
FunctionPointerType(Box<FunctionPointerType<'tree>>),
GenericName(Box<GenericName<'tree>>),
Identifier(Box<Identifier<'tree>>),
ImplicitType(Box<ImplicitType<'tree>>),
NullableType(Box<NullableType<'tree>>),
PointerType(Box<PointerType<'tree>>),
PredefinedType(Box<PredefinedType<'tree>>),
QualifiedName(Box<QualifiedName<'tree>>),
RefType(Box<RefType<'tree>>),
ScopedType(Box<ScopedType<'tree>>),
TupleType(Box<TupleType<'tree>>),
}Variants§
AliasQualifiedName(Box<AliasQualifiedName<'tree>>)
ArrayType(Box<ArrayType<'tree>>)
FunctionPointerType(Box<FunctionPointerType<'tree>>)
GenericName(Box<GenericName<'tree>>)
Identifier(Box<Identifier<'tree>>)
ImplicitType(Box<ImplicitType<'tree>>)
NullableType(Box<NullableType<'tree>>)
PointerType(Box<PointerType<'tree>>)
PredefinedType(Box<PredefinedType<'tree>>)
QualifiedName(Box<QualifiedName<'tree>>)
RefType(Box<RefType<'tree>>)
ScopedType(Box<ScopedType<'tree>>)
TupleType(Box<TupleType<'tree>>)
Trait Implementations§
impl<'tree> Eq for Type<'tree>
impl<'tree> StructuralPartialEq for Type<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for Type<'tree>
impl<'tree> RefUnwindSafe for Type<'tree>
impl<'tree> Send for Type<'tree>
impl<'tree> Sync for Type<'tree>
impl<'tree> Unpin for Type<'tree>
impl<'tree> UnsafeUnpin for Type<'tree>
impl<'tree> UnwindSafe for Type<'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