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§
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)
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.