pub trait IAkVectorMethods: IAkVector {
// Provided methods
fn zero(self) { ... }
fn set_x(self, value: impl Into<f32>) { ... }
fn get_x(self) -> f32 { ... }
fn set_y(self, value: impl Into<f32>) { ... }
fn get_y(self) -> f32 { ... }
fn set_z(self, value: impl Into<f32>) { ... }
fn get_z(self) -> f32 { ... }
fn ctor(self) { ... }
}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: IAkVector> IAkVectorMethods for __T
Available on crate feature
root-akvector only.