pub enum RStatement {
Expression(RExpression),
Throw(RExpression),
VariableDeclaration {
name: String,
is_const: bool,
initial_value: RExpression,
},
Assignment {
name: RIdentExpression,
value: RExpression,
},
WhileLoop(RConditionBody),
Break,
Continue,
}
Variants§
Expression(RExpression)
Throw(RExpression)
VariableDeclaration
Assignment
WhileLoop(RConditionBody)
Break
Continue
Auto Trait Implementations§
impl Freeze for RStatement
impl RefUnwindSafe for RStatement
impl Send for RStatement
impl Sync for RStatement
impl Unpin for RStatement
impl UnwindSafe for RStatement
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