pub enum ArgumentChildren<'tree> {
Expression(Box<Expression<'tree>>),
Name(Box<Name<'tree>>),
VariadicUnpacking(Box<VariadicUnpacking<'tree>>),
}Variants§
Expression(Box<Expression<'tree>>)
Name(Box<Name<'tree>>)
VariadicUnpacking(Box<VariadicUnpacking<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ArgumentChildren<'tree>
impl<'tree> Clone for ArgumentChildren<'tree>
Source§fn clone(&self) -> ArgumentChildren<'tree>
fn clone(&self) -> ArgumentChildren<'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 ArgumentChildren<'tree>
impl<'tree> Debug for ArgumentChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ArgumentChildren<'tree>
impl<'tree> FromNode<'tree> for ArgumentChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ArgumentChildren<'tree>
impl<'tree> RefUnwindSafe for ArgumentChildren<'tree>
impl<'tree> Send for ArgumentChildren<'tree>
impl<'tree> Sync for ArgumentChildren<'tree>
impl<'tree> Unpin for ArgumentChildren<'tree>
impl<'tree> UnsafeUnpin for ArgumentChildren<'tree>
impl<'tree> UnwindSafe for ArgumentChildren<'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