pub trait ILoop: IObject {
// Provided methods
fn scope(self) -> RuntimeScopeBlock { ... }
fn set_scope(self, value: RuntimeScopeBlock) { ... }
fn break_jumps(self) -> List_1<Instruction> { ... }
fn set_break_jumps(self, value: List_1<Instruction>) { ... }
}Provided Methods§
fn scope(self) -> RuntimeScopeBlock
fn set_scope(self, value: RuntimeScopeBlock)
fn break_jumps(self) -> List_1<Instruction>
fn set_break_jumps(self, value: List_1<Instruction>)
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.