pub trait IValueCountControllerMethods: IValueCountController {
// Provided methods
fn initialize(self, pos: impl Into<Vector3>, value: impl Into<i32>) { ... }
fn update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initialize(self, pos: impl Into<Vector3>, value: impl Into<i32>)
fn initialize(self, pos: impl Into<Vector3>, value: impl Into<i32>)
Initialize(crate::unity_engine::vector3::Vector3, i32) 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: IValueCountController> IValueCountControllerMethods for __T
Available on crate feature
app-valuecountcontroller only.