pub trait IIVariableMethods: IIVariable {
// Provided method
fn compile_assignment(
self,
bc: impl Into<ByteCode>,
stackofs: impl Into<i32>,
tupleidx: impl Into<i32>,
) { ... }
}Provided Methods§
Sourcefn compile_assignment(
self,
bc: impl Into<ByteCode>,
stackofs: impl Into<i32>,
tupleidx: impl Into<i32>,
)
fn compile_assignment( self, bc: impl Into<ByteCode>, stackofs: impl Into<i32>, tupleidx: impl Into<i32>, )
CompileAssignment(crate::moon_sharp::interpreter::execution::vm::bytecode::ByteCode, i32, i32) overload
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§
impl<__T: IIVariable> IIVariableMethods for __T
Available on crate feature
moon_sharp-interpreter-tree-ivariable only.