pub trait IWhileStatement: IStatement {
// Provided methods
fn m_condition(self) -> Expression { ... }
fn set_m_condition(self, value: Expression) { ... }
fn m_block(self) -> Statement { ... }
fn set_m_block(self, value: Statement) { ... }
fn m_stack_frame(self) -> RuntimeScopeBlock { ... }
fn set_m_stack_frame(self, value: RuntimeScopeBlock) { ... }
fn m_start(self) -> SourceRef { ... }
fn set_m_start(self, value: SourceRef) { ... }
fn m_end(self) -> SourceRef { ... }
fn set_m_end(self, value: SourceRef) { ... }
}Provided Methods§
fn m_condition(self) -> Expression
fn set_m_condition(self, value: Expression)
fn m_block(self) -> Statement
fn set_m_block(self, value: Statement)
fn m_stack_frame(self) -> RuntimeScopeBlock
fn set_m_stack_frame(self, value: RuntimeScopeBlock)
fn m_start(self) -> SourceRef
fn set_m_start(self, value: SourceRef)
fn m_end(self) -> SourceRef
fn set_m_end(self, value: SourceRef)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.