Skip to main content

IEffectHandleMethods

Trait IEffectHandleMethods 

Source
pub trait IEffectHandleMethods: IEffectHandle {
    // Provided methods
    fn is_alive(self) -> bool { ... }
    fn awake(self) { ... }
    fn late_update(self) { ... }
    fn stop(self) { ... }
    fn stop_and_clear(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn is_alive(self) -> bool

IsAlive() overload

Source

fn awake(self)

Awake() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn stop(self)

Stop() overload

Source

fn stop_and_clear(self)

StopAndClear() 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: IEffectHandle> IEffectHandleMethods for __T

Available on crate feature combat-effecthandle only.