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