pub type CollectionName = Cow<'static, str>;
enum CollectionName { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.