pub trait IStructCalculatorData_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn get_calculator(self) -> CalculatorManager
where Self: Sized { ... }
fn add_command(
self,
name: Il2CppString,
func: Il2CppString,
) -> CalculatorCommand
where Self: Sized { ... }
fn add_condition_getter_command(
self,
name: Il2CppString,
) -> ConditionGetterCommand
where Self: Sized { ... }
fn release_command(self)
where Self: Sized { ... }
fn ctor(self)
where Self: Sized { ... }
}Provided Methods§
fn get_calculator(self) -> CalculatorManagerwhere
Self: Sized,
fn add_command(
self,
name: Il2CppString,
func: Il2CppString,
) -> CalculatorCommandwhere
Self: Sized,
fn add_condition_getter_command(
self,
name: Il2CppString,
) -> ConditionGetterCommandwhere
Self: Sized,
fn release_command(self)where
Self: Sized,
fn ctor(self)where
Self: Sized,
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.