pub trait VectorFrame:
Sealed
+ Copy
+ Clone
+ Debug
+ Eq
+ Hash
+ Default
+ 'static {
const NAME: &'static str;
const AXES: [&'static str; 3];
}Expand description
Frame of a Vector3.
Sealed: only the frames below exist.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".