Skip to main content

IStringCalculatorMethods

Trait IStringCalculatorMethods 

Source
pub trait IStringCalculatorMethods: IStringCalculator {
    // Provided methods
    fn get_entitys(self) -> List_1<CalculatorUtil_Entity> { ... }
    fn get_polishs(self) -> List_1<i32> { ... }
    fn ctor(self) { ... }
    fn ctor_2(self, name: impl Into<Il2CppString>) { ... }
    fn get_last_type(self) -> CalculatorUtil_Type { ... }
    fn get_item(self, index: impl Into<i32>) -> CalculatorUtil_Entity { ... }
    fn get_count(self) -> i32 { ... }
    fn setup(self, name: impl Into<Il2CppString>) { ... }
    fn clear(self) { ... }
    fn calc_reverse_polish(self) { ... }
    fn calc_reverse_polish_2(self, index: impl Into<i32>) -> i32 { ... }
    fn to_string(self) -> Il2CppString { ... }
}

Provided Methods§

Source

fn get_entitys(self) -> List_1<CalculatorUtil_Entity>

get_Entitys() overload

Source

fn get_polishs(self) -> List_1<i32>

get_Polishs() overload

Source

fn ctor(self)

.ctor() overload

Source

fn ctor_2(self, name: impl Into<Il2CppString>)

.ctor(::unity::Il2CppString) overload

Source

fn get_last_type(self) -> CalculatorUtil_Type

GetLastType() overload

Source

fn get_item(self, index: impl Into<i32>) -> CalculatorUtil_Entity

get_Item(i32) overload

Source

fn get_count(self) -> i32

get_Count() overload

Source

fn setup(self, name: impl Into<Il2CppString>)

Setup(::unity::Il2CppString) overload

Source

fn clear(self)

Clear() overload

Source

fn calc_reverse_polish(self)

CalcReversePolish() overload

Source

fn calc_reverse_polish_2(self, index: impl Into<i32>) -> i32

CalcReversePolish(i32) overload

Source

fn to_string(self) -> Il2CppString

ToString() overload

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§

Source§

impl<__T: IStringCalculator> IStringCalculatorMethods for __T

Available on crate feature app-stringcalculator only.