pub type StaticCow<T> = Cow<'static, T>;
pub enum StaticCow<T> { Borrowed(&'static T), Owned(<T as ToOwned>::Owned), }
Borrowed data.
Owned data.