Skip to main content

IScript

Trait IScript 

Source
pub trait IScript: IObject {
    // Provided methods
    fn m_main_processor(self) -> Processor { ... }
    fn set_m_main_processor(self, value: Processor) { ... }
    fn m_byte_code(self) -> ByteCode { ... }
    fn set_m_byte_code(self, value: ByteCode) { ... }
    fn m_sources(self) -> List_1<SourceCode> { ... }
    fn set_m_sources(self, value: List_1<SourceCode>) { ... }
    fn m_global_table(self) -> Table { ... }
    fn set_m_global_table(self, value: Table) { ... }
    fn m_debugger(self) -> IDebugger { ... }
    fn set_m_debugger(self, value: IDebugger) { ... }
    fn m_type_metatables(self) -> Array<Table> { ... }
    fn set_m_type_metatables(self, value: Array<Table>) { ... }
}

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§