pub type Vec2b = VecN<u8, 2>;
Shorter aliases for the most popular specializations of Vec<T,n>
struct Vec2b(pub [u8; 2]);
0: [u8; 2]