pub trait Vector<T>where
T: Copy,{
// Required method
fn as_vec3(&self, neutral: T) -> Vec3<T>;
}Expand description
Values that can be converted to a vector.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".