pub enum FunctionPointerParameterType<'tree> {
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>>),
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>>)
TupleType(Box<TupleType<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for FunctionPointerParameterType<'tree>
impl<'tree> Clone for FunctionPointerParameterType<'tree>
Source§fn clone(&self) -> FunctionPointerParameterType<'tree>
fn clone(&self) -> FunctionPointerParameterType<'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 FunctionPointerParameterType<'tree>
impl<'tree> Debug for FunctionPointerParameterType<'tree>
impl<'tree> Eq for FunctionPointerParameterType<'tree>
Source§impl<'tree> FromNode<'tree> for FunctionPointerParameterType<'tree>
impl<'tree> FromNode<'tree> for FunctionPointerParameterType<'tree>
Source§impl<'tree> PartialEq for FunctionPointerParameterType<'tree>
impl<'tree> PartialEq for FunctionPointerParameterType<'tree>
Source§impl Spanned for FunctionPointerParameterType<'_>
impl Spanned for FunctionPointerParameterType<'_>
impl<'tree> StructuralPartialEq for FunctionPointerParameterType<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for FunctionPointerParameterType<'tree>
impl<'tree> RefUnwindSafe for FunctionPointerParameterType<'tree>
impl<'tree> Send for FunctionPointerParameterType<'tree>
impl<'tree> Sync for FunctionPointerParameterType<'tree>
impl<'tree> Unpin for FunctionPointerParameterType<'tree>
impl<'tree> UnsafeUnpin for FunctionPointerParameterType<'tree>
impl<'tree> UnwindSafe for FunctionPointerParameterType<'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