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