pub trait IAkPositionArrayMethods: IAkPositionArray {
// Provided methods
fn ctor(self, in_count: impl Into<u32>) { ... }
fn get_count(self) -> u32 { ... }
fn set_count(self, value: impl Into<u32>) { ... }
fn dispose(self) { ... }
fn finalize(self) { ... }
fn reset(self) { ... }
fn add(
self,
in_pos: impl Into<Vector3>,
in_forward: impl Into<Vector3>,
in_top: impl Into<Vector3>,
) { ... }
}Provided Methods§
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: IAkPositionArray> IAkPositionArrayMethods for __T
Available on crate feature
root-akpositionarray only.