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§
Sourcefn get_entitys(self) -> List_1<CalculatorUtil_Entity>
fn get_entitys(self) -> List_1<CalculatorUtil_Entity>
get_Entitys() overload
Sourcefn get_polishs(self) -> List_1<i32>
fn get_polishs(self) -> List_1<i32>
get_Polishs() overload
Sourcefn ctor_2(self, name: impl Into<Il2CppString>)
fn ctor_2(self, name: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_last_type(self) -> CalculatorUtil_Type
fn get_last_type(self) -> CalculatorUtil_Type
GetLastType() overload
Sourcefn get_item(self, index: impl Into<i32>) -> CalculatorUtil_Entity
fn get_item(self, index: impl Into<i32>) -> CalculatorUtil_Entity
get_Item(i32) overload
Sourcefn setup(self, name: impl Into<Il2CppString>)
fn setup(self, name: impl Into<Il2CppString>)
Setup(::unity::Il2CppString) overload
Sourcefn calc_reverse_polish(self)
fn calc_reverse_polish(self)
CalcReversePolish() overload
Sourcefn calc_reverse_polish_2(self, index: impl Into<i32>) -> i32
fn calc_reverse_polish_2(self, index: impl Into<i32>) -> i32
CalcReversePolish(i32) overload
Sourcefn to_string(self) -> Il2CppString
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§
impl<__T: IStringCalculator> IStringCalculatorMethods for __T
Available on crate feature
app-stringcalculator only.