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