pub type CowExtensionStatic = Cow<'static, str>;
pub enum CowExtensionStatic { Borrowed(&'static str), Owned(String), }
Borrowed data.
Owned data.