pub enum HashPatternChildren<'tree> {
HashSplatNil(Box<HashSplatNil<'tree>>),
HashSplatParameter(Box<HashSplatParameter<'tree>>),
KeywordPattern(Box<KeywordPattern<'tree>>),
}Variants§
HashSplatNil(Box<HashSplatNil<'tree>>)
HashSplatParameter(Box<HashSplatParameter<'tree>>)
KeywordPattern(Box<KeywordPattern<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for HashPatternChildren<'tree>
impl<'tree> Clone for HashPatternChildren<'tree>
Source§fn clone(&self) -> HashPatternChildren<'tree>
fn clone(&self) -> HashPatternChildren<'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 HashPatternChildren<'tree>
impl<'tree> Debug for HashPatternChildren<'tree>
Source§impl<'tree> FromNode<'tree> for HashPatternChildren<'tree>
impl<'tree> FromNode<'tree> for HashPatternChildren<'tree>
Source§impl<'tree> PartialEq for HashPatternChildren<'tree>
impl<'tree> PartialEq for HashPatternChildren<'tree>
Source§impl Spanned for HashPatternChildren<'_>
impl Spanned for HashPatternChildren<'_>
impl<'tree> Eq for HashPatternChildren<'tree>
impl<'tree> StructuralPartialEq for HashPatternChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for HashPatternChildren<'tree>
impl<'tree> RefUnwindSafe for HashPatternChildren<'tree>
impl<'tree> Send for HashPatternChildren<'tree>
impl<'tree> Sync for HashPatternChildren<'tree>
impl<'tree> Unpin for HashPatternChildren<'tree>
impl<'tree> UnsafeUnpin for HashPatternChildren<'tree>
impl<'tree> UnwindSafe for HashPatternChildren<'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