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