Enum darklua_core::nodes::Statement [−][src]
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
impl From<AssignStatement> for Statement[src]
impl From<AssignStatement> for Statement[src]fn from(assign: AssignStatement) -> Statement[src]
impl From<DoStatement> for Statement[src]
impl From<DoStatement> for Statement[src]fn from(do_statement: DoStatement) -> Statement[src]
impl From<FunctionCall> for Statement[src]
impl From<FunctionCall> for Statement[src]fn from(call: FunctionCall) -> Statement[src]
impl From<FunctionStatement> for Statement[src]
impl From<FunctionStatement> for Statement[src]fn from(function: FunctionStatement) -> Statement[src]
impl From<GenericForStatement> for Statement[src]
impl From<GenericForStatement> for Statement[src]fn from(generic_for: GenericForStatement) -> Statement[src]
impl From<IfStatement> for Statement[src]
impl From<IfStatement> for Statement[src]fn from(if_statement: IfStatement) -> Statement[src]
impl From<LocalAssignStatement> for Statement[src]
impl From<LocalAssignStatement> for Statement[src]fn from(assign: LocalAssignStatement) -> Statement[src]
impl From<LocalFunctionStatement> for Statement[src]
impl From<LocalFunctionStatement> for Statement[src]fn from(function: LocalFunctionStatement) -> Statement[src]
impl From<NumericForStatement> for Statement[src]
impl From<NumericForStatement> for Statement[src]fn from(numeric_for: NumericForStatement) -> Statement[src]
impl From<RepeatStatement> for Statement[src]
impl From<RepeatStatement> for Statement[src]fn from(repeat_statement: RepeatStatement) -> Statement[src]
impl From<WhileStatement> for Statement[src]
impl From<WhileStatement> for Statement[src]fn from(while_statement: WhileStatement) -> Statement[src]
impl StructuralEq for Statement[src]
impl StructuralEq for Statement[src]impl StructuralPartialEq for Statement[src]
impl StructuralPartialEq for Statement[src]Auto Trait Implementations
impl RefUnwindSafe for Statement
impl RefUnwindSafe for Statementimpl UnwindSafe for Statement
impl UnwindSafe for Statement