pub type CowStr = Cow<'static, str>;
An alias for a static Cow<str>.
Cow<str>
pub enum CowStr { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.