pub type CowStr = Cow<'static, str>;
A copy-on-write static string.
pub enum CowStr { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.