Skip to main content

IRingInfoMethods

Trait IRingInfoMethods 

Source
pub trait IRingInfoMethods: IRingInfo {
    // Provided methods
    fn prepare_ring_model(self) { ... }
    fn is_creating(self) -> bool { ... }
    fn start(self) { ... }
    fn tick(self) { ... }
    fn on_dispose(self) { ... }
    fn set_ring_impl(
        self,
        god_unit: impl Into<GodUnit>,
        ring_data: impl Into<RingData>,
        is_play_animation: impl Into<bool>,
        index: impl Into<i32>,
    ) { ... }
    fn delete_ring_models(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn prepare_ring_model(self)

PrepareRingModel() overload

Source

fn is_creating(self) -> bool

IsCreating() overload

Source

fn start(self)

Start() overload

Source

fn tick(self)

Tick() overload

Source

fn on_dispose(self)

OnDispose() overload

Source

fn set_ring_impl( self, god_unit: impl Into<GodUnit>, ring_data: impl Into<RingData>, is_play_animation: impl Into<bool>, index: impl Into<i32>, )

SetRingImpl(crate::app::godunit::GodUnit, crate::app::ringdata::RingData, bool, i32) overload

Source

fn delete_ring_models(self)

DeleteRingModels() 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: IRingInfo> IRingInfoMethods for __T

Available on crate feature app-ringinfo only.