Skip to main content

ICharacterObservableMethods

Trait ICharacterObservableMethods 

Source
pub trait ICharacterObservableMethods: ICharacterObservable {
    // Provided methods
    fn ctor(self, owner: impl Into<Character>) { ... }
    fn finalize(self) { ... }
    fn dispose(self) { ... }
}

Provided Methods§

Source

fn ctor(self, owner: impl Into<Character>)

.ctor(crate::combat::character::Character) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() 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: ICharacterObservable> ICharacterObservableMethods for __T

Available on crate feature combat-characterobservable only.