pub enum CaseStatementChildren<'tree> {
Show 22 variants
AttributedStatement(Box<AttributedStatement<'tree>>),
BreakStatement(Box<BreakStatement<'tree>>),
CoReturnStatement(Box<CoReturnStatement<'tree>>),
CoYieldStatement(Box<CoYieldStatement<'tree>>),
CompoundStatement(Box<CompoundStatement<'tree>>),
ContinueStatement(Box<ContinueStatement<'tree>>),
Declaration(Box<Declaration<'tree>>),
DoStatement(Box<DoStatement<'tree>>),
ExpressionStatement(Box<ExpressionStatement<'tree>>),
ForRangeLoop(Box<ForRangeLoop<'tree>>),
ForStatement(Box<ForStatement<'tree>>),
GotoStatement(Box<GotoStatement<'tree>>),
IfStatement(Box<IfStatement<'tree>>),
LabeledStatement(Box<LabeledStatement<'tree>>),
ReturnStatement(Box<ReturnStatement<'tree>>),
SehLeaveStatement(Box<SehLeaveStatement<'tree>>),
SehTryStatement(Box<SehTryStatement<'tree>>),
SwitchStatement(Box<SwitchStatement<'tree>>),
ThrowStatement(Box<ThrowStatement<'tree>>),
TryStatement(Box<TryStatement<'tree>>),
TypeDefinition(Box<TypeDefinition<'tree>>),
WhileStatement(Box<WhileStatement<'tree>>),
}Variants§
AttributedStatement(Box<AttributedStatement<'tree>>)
BreakStatement(Box<BreakStatement<'tree>>)
CoReturnStatement(Box<CoReturnStatement<'tree>>)
CoYieldStatement(Box<CoYieldStatement<'tree>>)
CompoundStatement(Box<CompoundStatement<'tree>>)
ContinueStatement(Box<ContinueStatement<'tree>>)
Declaration(Box<Declaration<'tree>>)
DoStatement(Box<DoStatement<'tree>>)
ExpressionStatement(Box<ExpressionStatement<'tree>>)
ForRangeLoop(Box<ForRangeLoop<'tree>>)
ForStatement(Box<ForStatement<'tree>>)
GotoStatement(Box<GotoStatement<'tree>>)
IfStatement(Box<IfStatement<'tree>>)
LabeledStatement(Box<LabeledStatement<'tree>>)
ReturnStatement(Box<ReturnStatement<'tree>>)
SehLeaveStatement(Box<SehLeaveStatement<'tree>>)
SehTryStatement(Box<SehTryStatement<'tree>>)
SwitchStatement(Box<SwitchStatement<'tree>>)
ThrowStatement(Box<ThrowStatement<'tree>>)
TryStatement(Box<TryStatement<'tree>>)
TypeDefinition(Box<TypeDefinition<'tree>>)
WhileStatement(Box<WhileStatement<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for CaseStatementChildren<'tree>
impl<'tree> Clone for CaseStatementChildren<'tree>
Source§fn clone(&self) -> CaseStatementChildren<'tree>
fn clone(&self) -> CaseStatementChildren<'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 CaseStatementChildren<'tree>
impl<'tree> Debug for CaseStatementChildren<'tree>
Source§impl<'tree> FromNode<'tree> for CaseStatementChildren<'tree>
impl<'tree> FromNode<'tree> for CaseStatementChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for CaseStatementChildren<'tree>
impl<'tree> RefUnwindSafe for CaseStatementChildren<'tree>
impl<'tree> Send for CaseStatementChildren<'tree>
impl<'tree> Sync for CaseStatementChildren<'tree>
impl<'tree> Unpin for CaseStatementChildren<'tree>
impl<'tree> UnsafeUnpin for CaseStatementChildren<'tree>
impl<'tree> UnwindSafe for CaseStatementChildren<'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