Skip to main content

IReliancePopUpControllerMethods

Trait IReliancePopUpControllerMethods 

Source
pub trait IReliancePopUpControllerMethods: IReliancePopUpController {
    // Provided methods
    fn awake(self) { ... }
    fn update(self) { ... }
    fn is_playing_anim(self) -> bool { ... }
    fn pop_up(
        self,
        unit_l: impl Into<Unit>,
        unit_r: impl Into<Unit>,
        value: impl Into<i32>,
    ) { ... }
    fn hide(self) { ... }
    fn active_reliance(self) { ... }
    fn active_talk(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn update(self)

Update() overload

Source

fn is_playing_anim(self) -> bool

IsPlayingAnim() overload

Source

fn pop_up( self, unit_l: impl Into<Unit>, unit_r: impl Into<Unit>, value: impl Into<i32>, )

PopUp(crate::app::unit::Unit, crate::app::unit::Unit, i32) overload

Source

fn hide(self)

Hide() overload

Source

fn active_reliance(self)

ActiveReliance() overload

Source

fn active_talk(self)

ActiveTalk() 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: IReliancePopUpController> IReliancePopUpControllerMethods for __T

Available on crate feature app-reliancepopupcontroller only.