pub enum LambdaParametersChildren<'tree> {
BlockParameter(Box<BlockParameter<'tree>>),
DestructuredParameter(Box<DestructuredParameter<'tree>>),
ForwardParameter(Box<ForwardParameter<'tree>>),
HashSplatNil(Box<HashSplatNil<'tree>>),
HashSplatParameter(Box<HashSplatParameter<'tree>>),
Identifier(Box<Identifier<'tree>>),
KeywordParameter(Box<KeywordParameter<'tree>>),
OptionalParameter(Box<OptionalParameter<'tree>>),
SplatParameter(Box<SplatParameter<'tree>>),
}Variants§
BlockParameter(Box<BlockParameter<'tree>>)
DestructuredParameter(Box<DestructuredParameter<'tree>>)
ForwardParameter(Box<ForwardParameter<'tree>>)
HashSplatNil(Box<HashSplatNil<'tree>>)
HashSplatParameter(Box<HashSplatParameter<'tree>>)
Identifier(Box<Identifier<'tree>>)
KeywordParameter(Box<KeywordParameter<'tree>>)
OptionalParameter(Box<OptionalParameter<'tree>>)
SplatParameter(Box<SplatParameter<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for LambdaParametersChildren<'tree>
impl<'tree> Clone for LambdaParametersChildren<'tree>
Source§fn clone(&self) -> LambdaParametersChildren<'tree>
fn clone(&self) -> LambdaParametersChildren<'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 LambdaParametersChildren<'tree>
impl<'tree> Debug for LambdaParametersChildren<'tree>
Source§impl<'tree> FromNode<'tree> for LambdaParametersChildren<'tree>
impl<'tree> FromNode<'tree> for LambdaParametersChildren<'tree>
Source§impl<'tree> PartialEq for LambdaParametersChildren<'tree>
impl<'tree> PartialEq for LambdaParametersChildren<'tree>
Source§fn eq(&self, other: &LambdaParametersChildren<'tree>) -> bool
fn eq(&self, other: &LambdaParametersChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for LambdaParametersChildren<'_>
impl Spanned for LambdaParametersChildren<'_>
impl<'tree> Eq for LambdaParametersChildren<'tree>
impl<'tree> StructuralPartialEq for LambdaParametersChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for LambdaParametersChildren<'tree>
impl<'tree> RefUnwindSafe for LambdaParametersChildren<'tree>
impl<'tree> Send for LambdaParametersChildren<'tree>
impl<'tree> Sync for LambdaParametersChildren<'tree>
impl<'tree> Unpin for LambdaParametersChildren<'tree>
impl<'tree> UnsafeUnpin for LambdaParametersChildren<'tree>
impl<'tree> UnwindSafe for LambdaParametersChildren<'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