Skip to main content

ISupportInfoMethods

Trait ISupportInfoMethods 

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

Source

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

Source

fn ctor(self)

.ctor() 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: ISupportInfo> ISupportInfoMethods for __T

Available on crate feature app-supportinfo only.