pub enum LambdaCaptureSpecifierChildren<'tree> {
Identifier(Box<Identifier<'tree>>),
LambdaCaptureInitializer(Box<LambdaCaptureInitializer<'tree>>),
LambdaDefaultCapture(Box<LambdaDefaultCapture<'tree>>),
ParameterPackExpansion(Box<ParameterPackExpansion<'tree>>),
QualifiedIdentifier(Box<QualifiedIdentifier<'tree>>),
This(Box<This<'tree>>),
}Variants§
Identifier(Box<Identifier<'tree>>)
LambdaCaptureInitializer(Box<LambdaCaptureInitializer<'tree>>)
LambdaDefaultCapture(Box<LambdaDefaultCapture<'tree>>)
ParameterPackExpansion(Box<ParameterPackExpansion<'tree>>)
QualifiedIdentifier(Box<QualifiedIdentifier<'tree>>)
This(Box<This<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> Clone for LambdaCaptureSpecifierChildren<'tree>
Source§fn clone(&self) -> LambdaCaptureSpecifierChildren<'tree>
fn clone(&self) -> LambdaCaptureSpecifierChildren<'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 LambdaCaptureSpecifierChildren<'tree>
impl<'tree> Debug for LambdaCaptureSpecifierChildren<'tree>
Source§impl<'tree> FromNode<'tree> for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> FromNode<'tree> for LambdaCaptureSpecifierChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> RefUnwindSafe for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> Send for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> Sync for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> Unpin for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> UnsafeUnpin for LambdaCaptureSpecifierChildren<'tree>
impl<'tree> UnwindSafe for LambdaCaptureSpecifierChildren<'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