Skip to main content

IInstruction

Trait IInstruction 

Source
pub trait IInstruction: IObject {
Show 16 methods // Provided methods fn op_code(self) -> OpCode { ... } fn set_op_code(self, value: OpCode) { ... } fn symbol(self) -> SymbolRef { ... } fn set_symbol(self, value: SymbolRef) { ... } fn symbol_list(self) -> Array<SymbolRef> { ... } fn set_symbol_list(self, value: Array<SymbolRef>) { ... } fn name(self) -> Il2CppString { ... } fn set_name(self, value: Il2CppString) { ... } fn value(self) -> DynValue { ... } fn set_value(self, value: DynValue) { ... } fn num_val(self) -> i32 { ... } fn set_num_val(self, value: i32) { ... } fn num_val2(self) -> i32 { ... } fn set_num_val2(self, value: i32) { ... } fn source_code_ref(self) -> SourceRef { ... } fn set_source_code_ref(self, value: SourceRef) { ... }
}

Provided Methods§

Source

fn op_code(self) -> OpCode

Source

fn set_op_code(self, value: OpCode)

Source

fn symbol(self) -> SymbolRef

Source

fn set_symbol(self, value: SymbolRef)

Source

fn symbol_list(self) -> Array<SymbolRef>

Source

fn set_symbol_list(self, value: Array<SymbolRef>)

Source

fn name(self) -> Il2CppString

Source

fn set_name(self, value: Il2CppString)

Source

fn value(self) -> DynValue

Source

fn set_value(self, value: DynValue)

Source

fn num_val(self) -> i32

Source

fn set_num_val(self, value: i32)

Source

fn num_val2(self) -> i32

Source

fn set_num_val2(self, value: i32)

Source

fn source_code_ref(self) -> SourceRef

Source

fn set_source_code_ref(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.

Implementors§