Skip to main content

ITelopManager_ProcBondLevelUpMethods

Trait ITelopManager_ProcBondLevelUpMethods 

Source
pub trait ITelopManager_ProcBondLevelUpMethods: ITelopManager_ProcBondLevelUp {
    // Provided methods
    fn ctor(
        self,
        unit: impl Into<Unit>,
        god: impl Into<GodUnit>,
        level: impl Into<i32>,
        next_level: impl Into<i32>,
        god_data: impl Into<GodData>,
    ) { ... }
    fn load_face(self) { ... }
    fn play_telop(self) { ... }
    fn release_face(self) { ... }
    fn on_create(self) { ... }
    fn on_dispose(self) { ... }
}

Provided Methods§

Source

fn ctor( self, unit: impl Into<Unit>, god: impl Into<GodUnit>, level: impl Into<i32>, next_level: impl Into<i32>, god_data: impl Into<GodData>, )

.ctor(crate::app::unit::Unit, crate::app::godunit::GodUnit, i32, i32, crate::app::goddata::GodData) overload

Source

fn load_face(self)

LoadFace() overload

Source

fn play_telop(self)

PlayTelop() overload

Source

fn release_face(self)

ReleaseFace() overload

Source

fn on_create(self)

OnCreate() overload

Source

fn on_dispose(self)

OnDispose() 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: ITelopManager_ProcBondLevelUp> ITelopManager_ProcBondLevelUpMethods for __T

Available on crate feature app-telopmanager only.