pub enum CatchClauseChildren<'tree> {
CatchDeclaration(Box<CatchDeclaration<'tree>>),
CatchFilterClause(Box<CatchFilterClause<'tree>>),
}Variants§
CatchDeclaration(Box<CatchDeclaration<'tree>>)
CatchFilterClause(Box<CatchFilterClause<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for CatchClauseChildren<'tree>
impl<'tree> Clone for CatchClauseChildren<'tree>
Source§fn clone(&self) -> CatchClauseChildren<'tree>
fn clone(&self) -> CatchClauseChildren<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CatchClauseChildren<'tree>
impl<'tree> Debug for CatchClauseChildren<'tree>
impl<'tree> Eq for CatchClauseChildren<'tree>
Source§impl<'tree> FromNode<'tree> for CatchClauseChildren<'tree>
impl<'tree> FromNode<'tree> for CatchClauseChildren<'tree>
Source§impl<'tree> PartialEq for CatchClauseChildren<'tree>
impl<'tree> PartialEq for CatchClauseChildren<'tree>
Source§impl Spanned for CatchClauseChildren<'_>
impl Spanned for CatchClauseChildren<'_>
impl<'tree> StructuralPartialEq for CatchClauseChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for CatchClauseChildren<'tree>
impl<'tree> RefUnwindSafe for CatchClauseChildren<'tree>
impl<'tree> Send for CatchClauseChildren<'tree>
impl<'tree> Sync for CatchClauseChildren<'tree>
impl<'tree> Unpin for CatchClauseChildren<'tree>
impl<'tree> UnsafeUnpin for CatchClauseChildren<'tree>
impl<'tree> UnwindSafe for CatchClauseChildren<'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