pub type CowStrVec<'a, const N: usize> = TinyVec<Cow<'a, str>, N>;
os_cmd
pub enum CowStrVec<'a, const N: usize> { Inline(ArrayVec<[Cow<'a, str>; N]>), Heap(Vec<Cow<'a, str>>), }