pub trait ICalculatorUtil_EntityMethods: ICalculatorUtil_Entity {
// Provided methods
fn get_type(self) -> CalculatorUtil_Type { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_value(self) -> f32 { ... }
fn get_code(self) -> i32 { ... }
fn ctor(
self,
type: impl Into<CalculatorUtil_Type>,
name: impl Into<Il2CppString>,
value: impl Into<f32>,
) { ... }
}Provided Methods§
Sourcefn get_type(self) -> CalculatorUtil_Type
fn get_type(self) -> CalculatorUtil_Type
get_Type() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn ctor(
self,
type: impl Into<CalculatorUtil_Type>,
name: impl Into<Il2CppString>,
value: impl Into<f32>,
)
fn ctor( self, type: impl Into<CalculatorUtil_Type>, name: impl Into<Il2CppString>, value: impl Into<f32>, )
.ctor(crate::app::calculatorutil::CalculatorUtil_Type, ::unity::Il2CppString, f32) 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: ICalculatorUtil_Entity> ICalculatorUtil_EntityMethods for __T
Available on crate feature
app-calculatorutil only.