pub trait IMapBattleInfoSequenceMethods: IMapBattleInfoSequence {
// Provided methods
fn set_battle_info(
self,
b_show_wdw: impl Into<bool>,
info: impl Into<BattleInfo>,
scene_list: impl Into<BattleSceneList>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_battle_info(
self,
b_show_wdw: impl Into<bool>,
info: impl Into<BattleInfo>,
scene_list: impl Into<BattleSceneList>,
)
fn set_battle_info( self, b_show_wdw: impl Into<bool>, info: impl Into<BattleInfo>, scene_list: impl Into<BattleSceneList>, )
SetBattleInfo(bool, crate::app::battleinfo::BattleInfo, crate::app::battlescenelist::BattleSceneList) 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: IMapBattleInfoSequence> IMapBattleInfoSequenceMethods for __T
Available on crate feature
app-mapbattleinfosequence only.