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§
Sourcefn 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 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
Sourcefn play_telop(self)
fn play_telop(self)
PlayTelop() overload
Sourcefn release_face(self)
fn release_face(self)
ReleaseFace() overload
Sourcefn on_dispose(self)
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§
impl<__T: ITelopManager_ProcBondLevelUp> ITelopManager_ProcBondLevelUpMethods for __T
Available on crate feature
app-telopmanager only.