pub trait IPublicObject_Group: IObject {
// Provided methods
fn m_name(self) -> Il2CppString { ... }
fn set_m_name(self, value: Il2CppString) { ... }
fn m_objects(self) -> Array<Object_2> { ... }
fn set_m_objects(self, value: Array<Object_2>) { ... }
}Provided Methods§
fn m_name(self) -> Il2CppString
fn set_m_name(self, value: Il2CppString)
fn m_objects(self) -> Array<Object_2>
fn set_m_objects(self, value: Array<Object_2>)
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.