Skip to main content

ISymbolRef

Trait ISymbolRef 

Source
pub trait ISymbolRef: IObject {
    // Provided methods
    fn i_type(self) -> SymbolRefType { ... }
    fn set_i_type(self, value: SymbolRefType) { ... }
    fn i_env(self) -> SymbolRef { ... }
    fn set_i_env(self, value: SymbolRef) { ... }
    fn i_index(self) -> i32 { ... }
    fn set_i_index(self, value: i32) { ... }
    fn i_name(self) -> Il2CppString { ... }
    fn set_i_name(self, value: Il2CppString) { ... }
}

Provided Methods§

Source

fn i_type(self) -> SymbolRefType

Source

fn set_i_type(self, value: SymbolRefType)

Source

fn i_env(self) -> SymbolRef

Source

fn set_i_env(self, value: SymbolRef)

Source

fn i_index(self) -> i32

Source

fn set_i_index(self, value: i32)

Source

fn i_name(self) -> Il2CppString

Source

fn set_i_name(self, value: Il2CppString)

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§