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