pub enum Statement {
Assign(AssignStatement),
Do(DoStatement),
Call(FunctionCall),
Function(FunctionStatement),
GenericFor(GenericForStatement),
If(IfStatement),
LocalAssign(LocalAssignStatement),
LocalFunction(LocalFunctionStatement),
NumericFor(NumericForStatement),
Repeat(RepeatStatement),
While(WhileStatement),
}
Variants§
Assign(AssignStatement)
Do(DoStatement)
Call(FunctionCall)
Function(FunctionStatement)
GenericFor(GenericForStatement)
If(IfStatement)
LocalAssign(LocalAssignStatement)
LocalFunction(LocalFunctionStatement)
NumericFor(NumericForStatement)
Repeat(RepeatStatement)
While(WhileStatement)
Trait Implementations§
Source§impl Into<Statement> for AssignStatement
impl Into<Statement> for AssignStatement
Source§impl Into<Statement> for DoStatement
impl Into<Statement> for DoStatement
Source§impl Into<Statement> for FunctionCall
impl Into<Statement> for FunctionCall
Source§impl Into<Statement> for FunctionStatement
impl Into<Statement> for FunctionStatement
Source§impl Into<Statement> for GenericForStatement
impl Into<Statement> for GenericForStatement
Source§impl Into<Statement> for IfStatement
impl Into<Statement> for IfStatement
Source§impl Into<Statement> for LocalAssignStatement
impl Into<Statement> for LocalAssignStatement
Source§impl Into<Statement> for LocalFunctionStatement
impl Into<Statement> for LocalFunctionStatement
Source§impl Into<Statement> for NumericForStatement
impl Into<Statement> for NumericForStatement
Source§impl Into<Statement> for RepeatStatement
impl Into<Statement> for RepeatStatement
Source§impl Into<Statement> for WhileStatement
impl Into<Statement> for WhileStatement
impl Eq for Statement
impl StructuralPartialEq for Statement
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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