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