pub type CowStr<'a> = Cow<'a, str>;
String storage that can be either owned or borrowed This reduces clones when strings don’t need to be modified
pub enum CowStr<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.