pub trait IBattleDetail_CommandParamMethods: IBattleDetail_CommandParam {
// Provided methods
fn ctor(self, command: impl Into<Il2CppString>) { ... }
fn get_command(self) -> CalculatorCommand { ... }
fn get(
self,
name: impl Into<Il2CppString>,
side: impl Into<BattleInfoSide>,
) -> f32 { ... }
fn calculate(self, side: impl Into<BattleInfoSide>) -> f32 { ... }
}Provided Methods§
Sourcefn ctor(self, command: impl Into<Il2CppString>)
fn ctor(self, command: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_command(self) -> CalculatorCommand
fn get_command(self) -> CalculatorCommand
get_Command() overload
Sourcefn get(
self,
name: impl Into<Il2CppString>,
side: impl Into<BattleInfoSide>,
) -> f32
fn get( self, name: impl Into<Il2CppString>, side: impl Into<BattleInfoSide>, ) -> f32
Get(::unity::Il2CppString, crate::app::battleinfoside::BattleInfoSide) overload
Sourcefn calculate(self, side: impl Into<BattleInfoSide>) -> f32
fn calculate(self, side: impl Into<BattleInfoSide>) -> f32
Calculate(crate::app::battleinfoside::BattleInfoSide) 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: IBattleDetail_CommandParam> IBattleDetail_CommandParamMethods for __T
Available on crate feature
app-battledetail only.