pub trait IMapBackup: IObject {
// Provided methods
fn key(self) -> Il2CppString { ... }
fn set_key(self, value: Il2CppString) { ... }
fn state(self) -> i32 { ... }
fn set_state(self, value: i32) { ... }
fn action(self) -> MapObject_Actions { ... }
fn set_action(self, value: MapObject_Actions) { ... }
fn map_material(self) -> MapMaterial { ... }
fn set_map_material(self, value: MapMaterial) { ... }
}Provided Methods§
fn key(self) -> Il2CppString
fn set_key(self, value: Il2CppString)
fn state(self) -> i32
fn set_state(self, value: i32)
fn action(self) -> MapObject_Actions
fn set_action(self, value: MapObject_Actions)
fn map_material(self) -> MapMaterial
fn set_map_material(self, value: MapMaterial)
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.