Skip to main content

IStructCalculatorData_1Methods

Trait IStructCalculatorData_1Methods 

Source
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§

Source

fn get_calculator(self) -> CalculatorManager
where Self: Sized,

Source

fn add_command( self, name: Il2CppString, func: Il2CppString, ) -> CalculatorCommand
where Self: Sized,

Source

fn add_condition_getter_command( self, name: Il2CppString, ) -> ConditionGetterCommand
where Self: Sized,

Source

fn release_command(self)
where Self: Sized,

Source

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.

Implementors§