pub trait ISkillData_Func: IObject {
// Provided methods
fn name(self) -> Il2CppString { ... }
fn set_name(self, value: Il2CppString) { ... }
fn operation(self) -> SkillData_Operations { ... }
fn set_operation(self, value: SkillData_Operations) { ... }
fn set_command(self) -> CalculatorCommand { ... }
fn set_set_command(self, value: CalculatorCommand) { ... }
fn get_command(self) -> CalculatorCommand { ... }
fn set_get_command(self, value: CalculatorCommand) { ... }
}Provided Methods§
fn name(self) -> Il2CppString
fn set_name(self, value: Il2CppString)
fn operation(self) -> SkillData_Operations
fn set_operation(self, value: SkillData_Operations)
fn set_command(self) -> CalculatorCommand
fn set_set_command(self, value: CalculatorCommand)
fn get_command(self) -> CalculatorCommand
fn set_get_command(self, value: CalculatorCommand)
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.