pub enum ElementReferenceChildren<'tree> {
Expression(Box<Expression<'tree>>),
BlockArgument(Box<BlockArgument<'tree>>),
ForwardArgument(Box<ForwardArgument<'tree>>),
HashSplatArgument(Box<HashSplatArgument<'tree>>),
Pair(Box<Pair<'tree>>),
SplatArgument(Box<SplatArgument<'tree>>),
}Variants§
Expression(Box<Expression<'tree>>)
BlockArgument(Box<BlockArgument<'tree>>)
ForwardArgument(Box<ForwardArgument<'tree>>)
HashSplatArgument(Box<HashSplatArgument<'tree>>)
Pair(Box<Pair<'tree>>)
SplatArgument(Box<SplatArgument<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ElementReferenceChildren<'tree>
impl<'tree> Clone for ElementReferenceChildren<'tree>
Source§fn clone(&self) -> ElementReferenceChildren<'tree>
fn clone(&self) -> ElementReferenceChildren<'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 ElementReferenceChildren<'tree>
impl<'tree> Debug for ElementReferenceChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ElementReferenceChildren<'tree>
impl<'tree> FromNode<'tree> for ElementReferenceChildren<'tree>
Source§impl<'tree> PartialEq for ElementReferenceChildren<'tree>
impl<'tree> PartialEq for ElementReferenceChildren<'tree>
Source§fn eq(&self, other: &ElementReferenceChildren<'tree>) -> bool
fn eq(&self, other: &ElementReferenceChildren<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for ElementReferenceChildren<'_>
impl Spanned for ElementReferenceChildren<'_>
impl<'tree> Eq for ElementReferenceChildren<'tree>
impl<'tree> StructuralPartialEq for ElementReferenceChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ElementReferenceChildren<'tree>
impl<'tree> RefUnwindSafe for ElementReferenceChildren<'tree>
impl<'tree> Send for ElementReferenceChildren<'tree>
impl<'tree> Sync for ElementReferenceChildren<'tree>
impl<'tree> Unpin for ElementReferenceChildren<'tree>
impl<'tree> UnsafeUnpin for ElementReferenceChildren<'tree>
impl<'tree> UnwindSafe for ElementReferenceChildren<'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