pub trait IWellEffectManagerMethods: IWellEffectManager {
// Provided methods
fn on_enable(self) { ... }
fn on_disable(self) { ... }
fn on_destroy(self) { ... }
fn try_create_effect(self) { ... }
fn try_fade_out_effect(self) { ... }
fn destroy_effect(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn try_create_effect(self)
fn try_create_effect(self)
TryCreateEffect() overload
Sourcefn try_fade_out_effect(self)
fn try_fade_out_effect(self)
TryFadeOutEffect() overload
Sourcefn destroy_effect(self)
fn destroy_effect(self)
DestroyEffect() 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: IWellEffectManager> IWellEffectManagerMethods for __T
Available on crate feature
app-welleffectmanager only.