pub type ThinVec<T> = Vec<T, Thin<Global>>;
A vector which is pointer-sized, storing its capacity and length in the allocated buffer.
pub struct ThinVec<T> { /* private fields */ }