pub trait IMapSequenceTurnBeginEffectMethods: IMapSequenceTurnBeginEffect {
// Provided methods
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn terrain_update(self) { ... }
fn update_image(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn terrain_update(self)
fn terrain_update(self)
TerrainUpdate() overload
Sourcefn update_image(self)
fn update_image(self)
UpdateImage() 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: IMapSequenceTurnBeginEffect> IMapSequenceTurnBeginEffectMethods for __T
Available on crate feature
app-mapsequenceturnbegineffect only.