pub type CowString = Cow<'static, str>;
Cow-optimized string for contexts where we may or may not own the data
pub enum CowString { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.