pub trait ICombatLocationSkyMethods: ICombatLocationSky {
// Provided methods
fn ctor(self, record: impl Into<CombatRecord>) { ... }
fn get_rough_pos_count(self) -> i32 { ... }
fn set_rough_pos(self, try_count: impl Into<i32>) { ... }
fn get_pattern_count(self) -> i32 { ... }
fn set_battle_patern(self, pattern: impl Into<i32>) { ... }
fn calc_location(self) { ... }
}Provided Methods§
Sourcefn ctor(self, record: impl Into<CombatRecord>)
fn ctor(self, record: impl Into<CombatRecord>)
.ctor(crate::combat::combatrecord::CombatRecord) overload
Sourcefn get_rough_pos_count(self) -> i32
fn get_rough_pos_count(self) -> i32
get_RoughPosCount() overload
Sourcefn set_rough_pos(self, try_count: impl Into<i32>)
fn set_rough_pos(self, try_count: impl Into<i32>)
SetRoughPos(i32) overload
Sourcefn get_pattern_count(self) -> i32
fn get_pattern_count(self) -> i32
get_PatternCount() overload
Sourcefn set_battle_patern(self, pattern: impl Into<i32>)
fn set_battle_patern(self, pattern: impl Into<i32>)
SetBattlePatern(i32) overload
Sourcefn calc_location(self)
fn calc_location(self)
CalcLocation() 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: ICombatLocationSky> ICombatLocationSkyMethods for __T
Available on crate feature
combat-combatlocationsky only.