Skip to main content

IModule

Trait IModule 

Source
pub trait IModule: IObject {
Show 14 methods // Provided methods fn impl(self) -> IntPtr { ... } fn set_impl(self, value: IntPtr) { ... } fn assembly(self) -> Assembly { ... } fn set_assembly(self, value: Assembly) { ... } fn fqname(self) -> Il2CppString { ... } fn set_fqname(self, value: Il2CppString) { ... } fn name(self) -> Il2CppString { ... } fn set_name(self, value: Il2CppString) { ... } fn scopename(self) -> Il2CppString { ... } fn set_scopename(self, value: Il2CppString) { ... } fn is_resource_field(self) -> bool { ... } fn set_is_resource_field(self, value: bool) { ... } fn token(self) -> i32 { ... } fn set_token(self, value: i32) { ... }
}

Provided Methods§

Source

fn impl(self) -> IntPtr

Source

fn set_impl(self, value: IntPtr)

Source

fn assembly(self) -> Assembly

Source

fn set_assembly(self, value: Assembly)

Source

fn fqname(self) -> Il2CppString

Source

fn set_fqname(self, value: Il2CppString)

Source

fn name(self) -> Il2CppString

Source

fn set_name(self, value: Il2CppString)

Source

fn scopename(self) -> Il2CppString

Source

fn set_scopename(self, value: Il2CppString)

Source

fn is_resource_field(self) -> bool

Source

fn set_is_resource_field(self, value: bool)

Source

fn token(self) -> i32

Source

fn set_token(self, value: i32)

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§