Enum darklua_core::nodes::Statement [−][src]
pub enum Statement {
Assign(AssignStatement),
Do(DoStatement),
Call(FunctionCall),
CompoundAssign(CompoundAssignStatement),
Function(FunctionStatement),
GenericFor(GenericForStatement),
If(IfStatement),
LocalAssign(LocalAssignStatement),
LocalFunction(LocalFunctionStatement),
NumericFor(Box<NumericForStatement>),
Repeat(RepeatStatement),
While(WhileStatement),
}
Variants
Assign(AssignStatement)
Tuple Fields
Do(DoStatement)
Tuple Fields
0: DoStatement
Call(FunctionCall)
Tuple Fields
0: FunctionCall
CompoundAssign(CompoundAssignStatement)
Tuple Fields
Function(FunctionStatement)
Tuple Fields
GenericFor(GenericForStatement)
Tuple Fields
If(IfStatement)
Tuple Fields
0: IfStatement
LocalAssign(LocalAssignStatement)
Tuple Fields
LocalFunction(LocalFunctionStatement)
Tuple Fields
NumericFor(Box<NumericForStatement>)
Tuple Fields
Repeat(RepeatStatement)
Tuple Fields
While(WhileStatement)
Tuple Fields
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Statement
impl UnwindSafe for Statement
Blanket Implementations
Mutably borrows from an owned value. Read more