pub type Vec2U<T> = Vector<2, T, Unaligned>;
A 2-dimensional vector.
This type is not SIMD-aligned and has the memory layout of [T; 2].
[T; 2]
pub struct Vec2U<T>(/* private fields */);