Skip to main content

IReinsControllerMethods

Trait IReinsControllerMethods 

Source
pub trait IReinsControllerMethods: IReinsController {
    // Provided methods
    fn get_cp(self) -> Character { ... }
    fn set_weight(self, weight: impl Into<f32>) -> f32 { ... }
    fn start(self) { ... }
    fn my_start(self) { ... }
    fn late_update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_cp(self) -> Character

get_CP() overload

Source

fn set_weight(self, weight: impl Into<f32>) -> f32

SetWeight(f32) overload

Source

fn start(self)

Start() overload

Source

fn my_start(self)

MyStart() overload

Source

fn late_update(self)

LateUpdate() 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: IReinsController> IReinsControllerMethods for __T

Available on crate feature combat-reinscontroller only.