Skip to main content

ICalculatorUtil_EntityMethods

Trait ICalculatorUtil_EntityMethods 

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

Source

fn get_type(self) -> CalculatorUtil_Type

get_Type() overload

Source

fn get_name(self) -> Il2CppString

get_Name() overload

Source

fn get_value(self) -> f32

get_Value() overload

Source

fn get_code(self) -> i32

get_Code() overload

Source

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§

Source§

impl<__T: ICalculatorUtil_Entity> ICalculatorUtil_EntityMethods for __T

Available on crate feature app-calculatorutil only.