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§
Sourcefn set_weight(self, weight: impl Into<f32>) -> f32
fn set_weight(self, weight: impl Into<f32>) -> f32
SetWeight(f32) overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() 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: IReinsController> IReinsControllerMethods for __T
Available on crate feature
combat-reinscontroller only.