pub trait VectorSource<T: FloatType>: 'static {
const IS_3D: bool;
// Required methods
fn into_2d(self) -> [T; 2];
fn into_3d(self) -> [T; 3];
}
Required Associated Constants§
Required 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.