pub trait IAssetTableItem: IObject {
Show 14 methods
// Provided methods
fn preset_name(self) -> Il2CppString { ... }
fn set_preset_name(self, value: Il2CppString) { ... }
fn mode(self) -> u8 { ... }
fn set_mode(self, value: u8) { ... }
fn conditions(self) -> Il2CppString { ... }
fn set_conditions(self, value: Il2CppString) { ... }
fn body_model(self) -> Il2CppString { ... }
fn set_body_model(self, value: Il2CppString) { ... }
fn body_texture(self) -> Il2CppString { ... }
fn set_body_texture(self, value: Il2CppString) { ... }
fn dress_model(self) -> Il2CppString { ... }
fn set_dress_model(self, value: Il2CppString) { ... }
fn dress_texture(self) -> Il2CppString { ... }
fn set_dress_texture(self, value: Il2CppString) { ... }
}Provided Methods§
fn preset_name(self) -> Il2CppString
fn set_preset_name(self, value: Il2CppString)
fn mode(self) -> u8
fn set_mode(self, value: u8)
fn conditions(self) -> Il2CppString
fn set_conditions(self, value: Il2CppString)
fn body_model(self) -> Il2CppString
fn set_body_model(self, value: Il2CppString)
fn body_texture(self) -> Il2CppString
fn set_body_texture(self, value: Il2CppString)
fn dress_model(self) -> Il2CppString
fn set_dress_model(self, value: Il2CppString)
fn dress_texture(self) -> Il2CppString
fn set_dress_texture(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.