Skip to main content

IByteCode

Trait IByteCode 

Source
pub trait IByteCode: IRefIdObject {
    // Provided methods
    fn code(self) -> List_1<Instruction> { ... }
    fn set_code(self, value: List_1<Instruction>) { ... }
    fn m_source_ref_stack(self) -> List_1<SourceRef> { ... }
    fn set_m_source_ref_stack(self, value: List_1<SourceRef>) { ... }
    fn m_current_source_ref(self) -> SourceRef { ... }
    fn set_m_current_source_ref(self, value: SourceRef) { ... }
    fn loop_tracker(self) -> LoopTracker { ... }
    fn set_loop_tracker(self, value: LoopTracker) { ... }
}

Provided Methods§

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.

Implementors§