pub trait ISupportInfoMethods: ISupportInfo {
// Provided methods
fn set_battle_info(
self,
info: impl Into<BattleInfo>,
side_type: impl Into<BattleSide_Type>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_battle_info(
self,
info: impl Into<BattleInfo>,
side_type: impl Into<BattleSide_Type>,
)
fn set_battle_info( self, info: impl Into<BattleInfo>, side_type: impl Into<BattleSide_Type>, )
SetBattleInfo(crate::app::battleinfo::BattleInfo, crate::app::battleside::BattleSide_Type) 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: ISupportInfo> ISupportInfoMethods for __T
Available on crate feature
app-supportinfo only.