pub enum ApplyArgument<'tree> {
ExplicitType(Box<ExplicitType<'tree>>),
Expression(Box<Expression<'tree>>),
KindApplication(Box<KindApplication<'tree>>),
Pattern(Box<Pattern<'tree>>),
Type(Box<Type<'tree>>),
TypeApplication(Box<TypeApplication<'tree>>),
TypeBinder(Box<TypeBinder<'tree>>),
}Variants§
ExplicitType(Box<ExplicitType<'tree>>)
Expression(Box<Expression<'tree>>)
KindApplication(Box<KindApplication<'tree>>)
Pattern(Box<Pattern<'tree>>)
Type(Box<Type<'tree>>)
TypeApplication(Box<TypeApplication<'tree>>)
TypeBinder(Box<TypeBinder<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ApplyArgument<'tree>
impl<'tree> Clone for ApplyArgument<'tree>
Source§fn clone(&self) -> ApplyArgument<'tree>
fn clone(&self) -> ApplyArgument<'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 ApplyArgument<'tree>
impl<'tree> Debug for ApplyArgument<'tree>
impl<'tree> Eq for ApplyArgument<'tree>
Source§impl<'tree> FromNode<'tree> for ApplyArgument<'tree>
impl<'tree> FromNode<'tree> for ApplyArgument<'tree>
Source§impl<'tree> PartialEq for ApplyArgument<'tree>
impl<'tree> PartialEq for ApplyArgument<'tree>
Source§impl Spanned for ApplyArgument<'_>
impl Spanned for ApplyArgument<'_>
impl<'tree> StructuralPartialEq for ApplyArgument<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ApplyArgument<'tree>
impl<'tree> RefUnwindSafe for ApplyArgument<'tree>
impl<'tree> Send for ApplyArgument<'tree>
impl<'tree> Sync for ApplyArgument<'tree>
impl<'tree> Unpin for ApplyArgument<'tree>
impl<'tree> UnsafeUnpin for ApplyArgument<'tree>
impl<'tree> UnwindSafe for ApplyArgument<'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