pub trait IIfStatement_IfBlock: IObject {
// Provided methods
fn exp(self) -> Expression { ... }
fn set_exp(self, value: Expression) { ... }
fn block(self) -> Statement { ... }
fn set_block(self, value: Statement) { ... }
fn stack_frame(self) -> RuntimeScopeBlock { ... }
fn set_stack_frame(self, value: RuntimeScopeBlock) { ... }
fn source(self) -> SourceRef { ... }
fn set_source(self, value: SourceRef) { ... }
}Provided Methods§
fn exp(self) -> Expression
fn set_exp(self, value: Expression)
fn block(self) -> Statement
fn set_block(self, value: Statement)
fn stack_frame(self) -> RuntimeScopeBlock
fn set_stack_frame(self, value: RuntimeScopeBlock)
fn source(self) -> SourceRef
fn set_source(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.